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