mightstone.services.scryfall.models.Tag

pydantic model mightstone.services.scryfall.models.Tag

Show JSON schema
{
   "title": "Tag",
   "type": "object",
   "properties": {
      "id": {
         "format": "uuid",
         "title": "Id",
         "type": "string"
      },
      "object": {
         "title": "Object",
         "type": "string"
      },
      "label": {
         "title": "Label",
         "type": "string"
      },
      "type": {
         "title": "Type",
         "type": "string"
      },
      "description": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "title": "Description"
      },
      "oracle_ids": {
         "items": {
            "format": "uuid",
            "type": "string"
         },
         "title": "Oracle Ids",
         "type": "array"
      }
   },
   "required": [
      "object",
      "label",
      "type",
      "description",
      "oracle_ids"
   ]
}

Fields:
field description: str | None [Required]
field id: UUID [Optional]
field label: str [Required]
field object: str [Required]
field oracle_ids: List[UUID] [Required]
field type: str [Required]