{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RejectedReasonsPaginated", "title": "RejectedReasonsPaginated", "type": "object", "properties": { "next_page": { "type": "string" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/RejectedReason" } }, "raw": { "type": "string" } }, "required": [ "next_page", "data" ] }