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