This commit is contained in:
ct
2025-06-17 12:01:49 +08:00
parent 2dc85f70cc
commit e378245554
64 changed files with 4798 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["category"],
"properties": {
"category": {
"type": "object",
"required": ["name", "description", "keywords", "subcategories"],
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"keywords": {
"type": "array",
"items": { "type": "string" }
},
"subcategories": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "description", "meme_angles", "keywords", "sample_captions"],
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"meme_angles": {
"type": "array",
"items": { "type": "string" }
},
"keywords": {
"type": "array",
"items": { "type": "string" }
},
"sample_captions": {
"type": "array",
"items": { "type": "string" }
}
}
}
}
}
}
}
}