PolicyList schema from ACORD NGDS API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/acord/refs/heads/main/json-schema/ngds-policy-list-schema.json", "title": "PolicyList", "description": "PolicyList schema from ACORD NGDS API", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Policy" } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }