{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/business_list", "title": "business_list", "allOf": [ { "properties": { "businesses": { "description": "Array of businesses.", "items": { "$ref": "#/components/schemas/business" }, "type": "array" } }, "required": [ "businesses" ], "type": "object" }, { "$ref": "#/components/schemas/paginated_response" } ] }