Files
trailbase/examples/tutorial/scripts/schema/movie.json
Sebastian Jeltsch bdb3735840 Squash all commits for a fresh start.
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
2024-10-30 23:38:56 +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"
}