49 lines
1.8 KiB
JSON
Raw Normal View History

{
"data_store_specifications": {
"json": {
"german_philosophers": {
"description": "",
"identifier": "german_philosophers",
"location": "examples/2-in-depth/data-stores",
"name": "German Philosophers",
"schema": {}
}
},
"kkv": {
"movies": {
"description": "",
"identifier": "movies",
"location": "examples/2-in-depth/data-stores",
"name": "movies",
"schema": {
"description": "List of characters in the movie",
"items": {
"properties": {
"actor": {
"description": "Actor who portrays the character",
"type": "string"
},
"description": {
"description": "Brief description of the character",
"type": "string"
},
"name": {
"description": "Name of the character",
"type": "string"
}
},
"required": [
"name",
"actor",
"description"
],
"type": "object"
},
"type": "array"
}
}
}
},
"description": "An example of how to use a Data Store to keep track of information.",
"display_name": "Data Stores"
}