# Tag

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Tag:
      type: object
      properties:
        id:
          type: integer
          format: int64
          minimum: 1
          description: 标签ID编号
        name:
          type: string
          description: 标签名称
      xml:
        name: Tag
      x-apifox-orders:
        - id
        - name
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://mapi.yunmaovideo.com
    description: 正式环境
security: []

```
