{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateCategories", "title": "Create Categories", "type": "array", "items": { "allOf": [ { "type": "object", "properties": { "name": { "$ref": "#/components/schemas/name" }, "url": { "$ref": "#/components/schemas/url" }, "parent_id": { "$ref": "#/components/schemas/parent_id" }, "tree_id": { "$ref": "#/components/schemas/tree_id" } }, "required": [ "name", "tree_id", "parent_id" ] }, { "$ref": "#/components/schemas/CategoryBase" } ] } }