$schema: https://json-schema.org/draft/2020-12/schema
$id: SortQueryParams.yaml
type: object
properties:
  sortBy:
    examples:
      - lastModifiedAt
    description: The field to sort by
  customSortBy:
    type: string
    examples:
      - customField
    description: Implementation-defined sort key
  sortOrder:
    $ref: SortOrder.yaml
    examples:
      - asc
    description: The order to sort by
required:
  - sortBy
unevaluatedProperties:
  not: {}
description: Query parameters for sorting
