Skip to content

Instantly share code, notes, and snippets.

@Radiquum
Last active July 8, 2025 08:28
Show Gist options
  • Save Radiquum/7f33c09be293233b831c841b69f24608 to your computer and use it in GitHub Desktop.
Save Radiquum/7f33c09be293233b831c841b69f24608 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"comment": {
"type": "array",
"items": {
"type": "string"
}
},
"types": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"icon": {
"type": "string"
},
"sources": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"episodes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"position": {
"type": "number"
},
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"is_filler": {
"type": "boolean"
},
"iframe": {
"type": "boolean"
}
},
"required": [
"position"
]
}
}
},
"required": [
"id"
]
}
}
},
"required": [
"id"
]
}
}
},
"required": [
"types"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment