Shape on a PowerPoint slide
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-poi/refs/heads/main/json-schema/apache-poi-shape-schema.json", "title": "Shape", "description": "Shape on a PowerPoint slide", "type": "object", "properties": { "id": { "type": "integer", "description": "Shape identifier" }, "name": { "type": "string", "description": "Shape name" }, "type": { "type": "string", "description": "Shape type (TextBox, Picture, Table, etc.)" }, "text": { "type": "string", "description": "Text content of the shape" } } }