Last active
July 8, 2025 08:28
-
-
Save Radiquum/7f33c09be293233b831c841b69f24608 to your computer and use it in GitHub Desktop.
Revisions
-
Radiquum revised this gist
Jul 8, 2025 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -55,8 +55,7 @@ } }, "required": [ "position" ] } } -
Radiquum revised this gist
Jul 8, 2025 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -55,7 +55,8 @@ } }, "required": [ "position", "name" ] } } -
Radiquum renamed this gist
Jul 8, 2025 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Radiquum created this gist
Jul 8, 2025 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,78 @@ { "$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" ] }