ClaimList 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-claim-list-schema.json", "title": "ClaimList", "description": "ClaimList schema from ACORD NGDS API", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Claim" } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }