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