Skip to content

Instantly share code, notes, and snippets.

@joe-oli
Last active July 16, 2023 07:33
Show Gist options
  • Save joe-oli/69a418216d36e9fe60556431d869a2c7 to your computer and use it in GitHub Desktop.
Save joe-oli/69a418216d36e9fe60556431d869a2c7 to your computer and use it in GitHub Desktop.
Data - 1) sample of words which are nouns; 2) sample of fruits. NOTE- this gist contains two files.
[
{
"name": "Apple",
"color": "Red",
"taste": "Sweet"
},
{
"name": "Banana",
"color": "Yellow",
"taste": "Sweet"
},
{
"name": "Orange",
"color": "Orange",
"taste": "Sweet/Sour"
},
{
"name": "Pineapple",
"color": "Yellow/Green",
"taste": "Sweet/Sour"
},
{
"name": "Watermelon",
"color": "Green/Pink",
"taste": "Sweet"
}
]
{
"animals": ["cat", "dog", "horse", "cow", "sheep", "pig", "bird", "fish", "insect"],
"people": ["man", "woman", "child", "boy", "girl", "parent", "teacher", "doctor", "nurse"],
"places": ["house", "school", "hospital", "park", "city", "town", "country", "continent", "planet"],
"things": ["book", "pen", "paper", "pencil", "chair", "table", "computer", "phone", "television"],
"abstract_concepts": ["love", "hate", "peace", "war", "happiness", "sadness", "fear", "hope", "dreams"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment