A paginated list of policies.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PolicyPage", "title": "PolicyPage", "type": "object", "description": "A paginated list of policies.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Policy" }, "description": "The list of policies.", "example": [] }, "links": { "$ref": "#/components/schemas/PaginationLinks" } } }