Apideck · Schema

BillsSort

IntegrationsUnified API

Properties

Name Type Description
by string The field on which to sort the Bills
direction object
View JSON Schema on GitHub

JSON Schema

apideck-billssort-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillsSort",
  "title": "BillsSort",
  "type": "object",
  "x-apideck-schema-id": "BillsSort",
  "example": {
    "by": "updated_at",
    "direction": "desc"
  },
  "properties": {
    "by": {
      "type": "string",
      "x-apideck-enum-id": "bills.sort_by",
      "description": "The field on which to sort the Bills",
      "enum": [
        "updated_at",
        "created_at"
      ],
      "example": "updated_at"
    },
    "direction": {
      "$ref": "#/components/schemas/SortDirection"
    }
  },
  "additionalProperties": false
}