description: A representation of an another cat
allOf:
  - $ref: ../Pet.yaml
  - type: object
    properties:
      huntingSkill:
        type: string
        description: The measured skill for hunting
        default: lazy
        enum:
          - clueless
          - lazy
          - adventurous
          - aggressive
    required:
      - huntingSkill
