$schema: https://json-schema.org/draft/2020-12/schema
$id: BooleanComparisonFilter.yaml
type: object
properties:
  operator:
    $ref: EquivalenceOperators.yaml
    description: The operator to apply to the filter value
  value:
    type: boolean
    examples:
      - true
    description: The value to use for the filter operation
required:
  - operator
  - value
description: A filter that applies a comparison to a boolean value
