{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BillingAutomationResult", "title": "Billing automation result", "type": "object", "properties": { "BillingAutomations": { "maxItems": 1000, "type": "array", "items": { "$ref": "#/components/schemas/BillingAutomation" }, "description": "The list of filtered billing automations.", "nullable": true }, "Cursor": { "type": "string", "description": "Unique identifier of the last returned billing automation. This can be used in Limitation in a subsequent request to fetch the next batch of billing automations.", "format": "uuid", "nullable": true } }, "additionalProperties": false, "x-schema-id": "BillingAutomationResult" }