judobase.schemas.EventTag

pydantic model judobase.schemas.EventTag

Represents the data about event tags.

Show JSON schema
{
   "title": "EventTag",
   "description": "Represents the data about event tags.",
   "type": "object",
   "properties": {
      "name": {
         "description": "The name of happened event.",
         "title": "Event name",
         "type": "string"
      },
      "id_tag": {
         "description": "The unique identifier for the tag.",
         "title": "Tag ID",
         "type": "string"
      },
      "id_event": {
         "description": "The unique identifier for the event.",
         "title": "Event ID",
         "type": "number"
      },
      "id_group": {
         "description": "The unique identifier for the tag main group.",
         "title": "Tag group ID",
         "type": "number"
      },
      "group_name": {
         "description": "The name of the tag main group.",
         "title": "Tag group name",
         "type": "string"
      },
      "code_short": {
         "description": "The short code for the tag.",
         "title": "Short Tag code",
         "type": "string"
      },
      "public": {
         "description": "Indicates if the tag is publicly available.",
         "title": "Public Available",
         "type": "integer"
      },
      "id_groups": {
         "description": "The unique identifier for the tag groups.",
         "title": "Tag groups id",
         "type": "string"
      }
   },
   "required": [
      "name",
      "id_tag",
      "id_event",
      "id_group",
      "group_name",
      "code_short",
      "public",
      "id_groups"
   ]
}

Fields:
field code_short: str [Required]

The short code for the tag.

field group_name: str [Required]

The name of the tag main group.

field id_event: float [Required]

The unique identifier for the event.

field id_group: float [Required]

The unique identifier for the tag main group.

field id_groups: str [Required]

The unique identifier for the tag groups.

field id_tag: str [Required]

The unique identifier for the tag.

field name: str [Required]

The name of happened event.

field public: int [Required]

Indicates if the tag is publicly available.