Under the SUMO link I noticed there was an ontology for sports.
https://github.com/ontologyportal/sumo/blob/master/Sports.kif
Here is a sample of the file:
<!—
https://github.com/ontologyportal/sumo/blob/master/Sports.kif
...
We ask that people using or referencing this work cite our primary paper:
21
22 ;; Niles, I., and Pease, A. 2001. Towards a Standard Upper Ontology. In
23 ;; Proceedings of the 2nd International Conference on Formal Ontology in
24 ;; Information Systems (FOIS-2001), Chris Welty and Barry Smith, eds,
25 ;; Ogunquit, Maine, October 17-19, 2001. See also http://www.ontologyportal.org
...
(subclass Archery Sport)
90 (documentation Archery EnglishLanguage “The &%Sport of shooting &%Arrows with a &%Bow.”)
91 (subclass Badminton Sport)
92 (documentation Badminton EnglishLanguage “A game played on a court with light long-handled rackets used to volley a shuttlecock over a net.”)
93 (subclass Cricket Sport)
94 (documentation Cricket EnglishLanguage “A game played with a ball and bat by two teams of 11 players; teams take turns trying to score runs.”)
95 (subclass Curling Sport)
96 (documentation Curling EnglishLanguage “A game played on ice in which heavy stones with handles are slid toward a target.”)
97 (subclass Cycling Sport)
98 (documentation Cycling EnglishLanguage “The &%Sport of traveling on a &%Bicycle or similar.”)
99 (subclass MountainBiking Cycling)
100 (documentation MountainBiking EnglishLanguage “Mountain biking is a sport which consists of riding bicycles off-road, often over rough terrain, using specially adapted mountain bikes.”)
101 (subclass Diving Sport)
102 (documentation Diving EnglishLanguage “An athletic competition that involves diving into water.”)
103 ;scuba diving in in MILO as sub from Swimming
104 (subclass Snorkeling Diving)
105 (documentation Snorkeling EnglishLanguage “Snorkeling is the practice of swimming on or through a body of water while equipped with a diving mask, a shaped tube called a snorkel, and usually swimfins.”)
106 ;(subclass ScubaDiving Diving)
107 ;(documentation ScubaDiving EnglishLanguage “Is a form of underwater diving in which a diver uses a scuba set to breathe underwater.”)
—>
It you did not want to find or create a website to host a web service that would store and return records in an ontology you could just convert them to AIML categories to play with:
<category><pattern>xsubclass Archery Sport</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Archery English</pattern>
<template>The Sport of shooting Arrows with a Bow.</template></category>
<category><pattern>xsubclass Badminton Sport </pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Badminton English</pattern>
<template>A game played on a court with light long-handled rackets used to volley a shuttlecock over a net.</template></category>
<category><pattern>xsubclass Cricket Sport</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Cricket English</pattern>
<template>A game played with a ball and bat by two teams of 11 players; teams take turns trying to score runs.</template></category>
<category><pattern>xsubclass Curling Sport</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Curling English</pattern>
<template>A game played on ice in which heavy stones with handles are slid toward a target.</template></category>
<category><pattern>xsubclass Cycling Sport</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Cycling English</pattern>
<template>The Sport of traveling on a Bicycle or similar.</template></category>
<category><pattern>xsubclass MountainBiking Cycling</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation MountainBiking English</pattern>
<template>Mountain biking is a sport which consists of riding bicycles off-road, often over rough terrain, using specially adapted mountain bikes.</template></category>
<category><pattern>xsubclass Diving Sport</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Diving English</pattern>
<template>An athletic competition that involves diving into water.</template></category>
<category><pattern>xsubclass Snorkeling Diving</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation Snorkeling English</pattern>
<template>Snorkeling is the practice of swimming on or through a body of water while equipped with a diving mask, a shaped tube called a snorkel, and usually swimfins.</template></category>
<category><pattern>xsubclass ScubaDiving Diving</pattern>
<template>Yes</template></category>
<category><pattern>xdocumentation ScubaDiving English</pattern>
<template>Is a form of underwater diving in which a diver uses a scuba set to breathe underwater.</template></category>
<category><pattern>xsubclass *</pattern>
<template>No</template></category>
<category><pattern>xdocumentation * </pattern>
<template>I am not sure.</template></category>