duck-creek · Schema

InvoiceList

Properties

Name Type Description
invoices array
View JSON Schema on GitHub

JSON Schema

duck-creek-invoicelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceList",
  "title": "InvoiceList",
  "type": "object",
  "properties": {
    "invoices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Invoice"
      }
    }
  }
}