Created
October 16, 2023 04:16
-
-
Save samos123/3688da4694963b113d31e25cc4608cf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"classes": [ | |
{ | |
"class": "Instrument", | |
"description": "A musical instrument.", | |
"vectorIndexType": "hnsw", | |
"vectorizer": "text2vec-transformers", | |
"properties": [ | |
{ | |
"name": "name", | |
"dataType": ["text"], | |
"description": "Name of the instrument." | |
}, | |
{ | |
"name": "description", | |
"dataType": ["text"], | |
"description": "Description of the instrument." | |
}, | |
{ | |
"name": "yearIntroduced", | |
"dataType": ["int"], | |
"description": "Year the instrument was introduced." | |
}, | |
{ | |
"name": "isString", | |
"dataType": ["boolean"], | |
"description": "Is it a string instrument?" | |
}, | |
{ | |
"name": "playedBy", | |
"dataType": ["Musician"], | |
"description": "Musicians who play this instrument." | |
}{ | |
"class": "Musician", | |
"description": "An individual who plays a musical instrument.", | |
"vectorIndexType": "hnsw", | |
"vectorizer": "text2vec-transformers", | |
"properties": [ | |
{ | |
"name": "name", | |
"dataType": ["text"], | |
"description": "Name of the musician." | |
}, | |
{ | |
"name": "genre", | |
"dataType": ["text"], | |
"description": "Genre of music the musician specializes in." | |
}, | |
{ | |
"name": "yearsActive", | |
"dataType": ["int"], | |
"description": "Years active in music." | |
}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment