$schema: https://json-schema.org/draft/2020-12/schema
$id: CompetitionStatus.yaml
type: object
properties:
  value:
    $ref: CompetitionStatusOptions.yaml
    description: The status of the competition, from a predefined set of options
  customValue:
    type: string
    description: A custom value for the status
  description:
    type: string
    description: A human-readable description of the status
required:
  - value
unevaluatedProperties:
  not: {}
examples:
  - value: open
    customValue: custom
    description: Competition is open for applications
description: The status of the competition
