description: A representation of a dog
allOf:
  - $ref: Pet.yaml
  - type: object
    properties:
      packSize:
        type: integer
        format: int32
        description: the size of the pack the dog is from
        default: 0
        minimum: 0
    required:
      - packSize
