type: object
properties:
  id:
    type: integer
    format: int64
    readOnly: true
  name:
    type: string
  tag:
    type: string
  type:
    type: string
discriminator:
  propertyName: type
  mapping:
    猫: Cat.yaml
    犬: Dog.yaml
required:
  - id
  - name
  - type

