{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListCustomDomainsPaginatedResponseContent", "title": "ListCustomDomainsPaginatedResponseContent", "type": "object", "additionalProperties": false, "required": [ "custom_domains" ], "properties": { "custom_domains": { "type": "array", "items": { "$ref": "#/components/schemas/CustomDomain" } }, "next": { "type": "string", "description": "A cursor to be used as the \"from\" query parameter for the next page of results." } } }