YGOPRODeck · Schema
MonsterValues
Valid values for monster filters.
GamesTrading Card GamesYu Gi OhCard DatabaseOpen DataCommunity APIPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| type | array | All monster types. |
| race | array | All monster races. |
| attributes | array | All monster attributes. |
| level | array | Valid monster levels / ranks. |
| linkmarkers | array | Valid link marker positions. |
JSON Schema
{
"$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"
}
}
}
}