{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/giphy/json-schema/giphy-category-schema.json", "title": "GIPHY Category", "type": "object", "properties": { "name": { "type": "string" }, "name_encoded": { "type": "string" }, "subcategories": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "name_encoded": { "type": "string" } } } }, "gif": { "$ref": "giphy-gif-schema.json" } } }