{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/lists_lists-response-collection", "title": "lists_lists-response-collection", "allOf": [ { "$ref": "#/components/schemas/lists_api-response-collection" }, { "properties": { "result": { "items": { "allOf": [ { "$ref": "#/components/schemas/lists_list" }, { "required": [ "id", "name", "kind", "num_items", "created_on", "modified_on" ], "type": "object" } ] }, "type": "array" } }, "type": "object" } ], "type": "object" }