{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PolicyClientListResponse", "title": "PolicyClientListResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "const": "policyClient" }, "id": { "type": "string" }, "attributes": { "$ref": "#/components/schemas/PolicyClient" } } }, "example": [] } } }