Properties
| Name | Type | Description |
|---|---|---|
| updated_since | string | |
| status | string | Filter by bill status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillsFilter",
"title": "BillsFilter",
"type": "object",
"x-apideck-schema-id": "BillsFilter",
"example": {
"updated_since": "2020-09-30T07:43:32.000Z",
"status": "paid"
},
"properties": {
"updated_since": {
"type": "string",
"title": "Updated since (timestamp)",
"format": "date-time",
"example": "2020-09-30T07:43:32.000Z"
},
"status": {
"type": "string",
"title": "Status",
"description": "Filter by bill status",
"x-apideck-enum-id": "bills.status",
"enum": [
"paid",
"unpaid",
"partially_paid"
],
"example": "paid"
}
},
"additionalProperties": false
}