duck-creek · Schema

PolicyList

Properties

Name Type Description
total integer
offset integer
policies array
View JSON Schema on GitHub

JSON Schema

duck-creek-policylist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyList",
  "title": "PolicyList",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "policies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PolicySummary"
      }
    }
  }
}