{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedPublicCombinedCustomRegexRuleList", "title": "PaginatedPublicCombinedCustomRegexRuleList", "type": "object", "properties": { "count": { "type": "integer" }, "next": { "type": [ "string", "null" ], "format": "uri" }, "previous": { "type": [ "string", "null" ], "format": "uri" }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/PublicCombinedCustomRegexRule" } } }, "required": [ "count", "results" ] }