{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/yu-gi-oh/refs/heads/main/json-schema/ygoprodeck-api-monster-values-schema.json", "title": "MonsterValues", "description": "Valid values for monster filters.", "type": "object", "properties": { "type": { "type": "array", "description": "All monster types.", "items": { "type": "string" } }, "race": { "type": "array", "description": "All monster races.", "items": { "type": "string" } }, "attributes": { "type": "array", "description": "All monster attributes.", "items": { "type": "string" } }, "level": { "type": "array", "description": "Valid monster levels / ranks.", "items": { "type": "integer" } }, "linkmarkers": { "type": "array", "description": "Valid link marker positions.", "items": { "type": "string" } } } }