type: object
properties:
  id:
    type: integer
    format: int64
  name:
    type: string
  tag:
    type: string
  type:
    type: string
discriminator:
  propertyName: type
  mapping:
    cat: Cat.yaml
    dog: Dog.yaml
    anotherCat: another/Cat.yaml
    onemoreCat: one/more/Cat.yaml
required:
  - id
  - name
  - type

