Properties
| Name | Type | Description |
|---|---|---|
| updated_since | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JournalEntriesFilter",
"title": "JournalEntriesFilter",
"type": "object",
"x-apideck-schema-id": "JournalEntriesFilter",
"example": {
"updated_since": "2020-09-30T07:43:32.000Z",
"status": "draft"
},
"properties": {
"updated_since": {
"type": "string",
"title": "Updated since (timestamp)",
"format": "date-time",
"example": "2020-09-30T07:43:32.000Z"
},
"status": {
"type": "string",
"enum": [
"draft",
"pending_approval",
"approved",
"posted",
"voided",
"rejected",
"deleted",
"other"
],
"x-apideck-enum-id": "journal_entries.status"
}
},
"additionalProperties": false
}