duck-creek · Schema

ProductList

Properties

Name Type Description
products array
View JSON Schema on GitHub

JSON Schema

duck-creek-productlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductList",
  "title": "ProductList",
  "type": "object",
  "properties": {
    "products": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProductSummary"
      }
    }
  }
}