{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Child1", "title": "Child1", "required": [ "Quantity", "Name", "Link", "Children" ], "type": "object", "properties": { "Quantity": { "type": "integer", "format": "int32" }, "Name": { "type": "string" }, "Link": { "type": "string" }, "Children": { "type": "array", "items": { "type": "string" }, "description": "" } }, "example": { "Quantity": 6, "Name": "TV LED", "Link": "/Eletronicos/TV/TV-LED", "Children": [] } }