Files
trailbase/examples/data-cli-tutorial/schema/movie.json
Sebastian Jeltsch c3a81d7359 Clean up examples and tutorials as well as minor doc tweaks.
Also add a reconnect loop to collab clicker.
2025-01-24 14:26:16 +01:00

64 lines
927 B
JSON

{
"$defs": {},
"properties": {
"description": {
"type": "string"
},
"gross": {
"type": [
"number",
"string",
"boolean",
"object",
"array",
"null"
]
},
"metascore": {
"type": [
"number",
"string",
"boolean",
"object",
"array",
"null"
]
},
"name": {
"type": "string"
},
"rank": {
"type": "integer"
},
"rating": {
"type": "number"
},
"votes": {
"type": "string"
},
"watch_time": {
"type": "integer"
},
"year": {
"type": [
"number",
"string",
"boolean",
"object",
"array",
"null"
]
}
},
"required": [
"name",
"year",
"watch_time",
"rating",
"votes",
"description"
],
"title": "movies",
"type": "object"
}