{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CapturedPhoto", "title": "CapturedPhoto", "type": "object", "properties": { "filePath": { "type": "string", "description": "Path to the captured photo file" }, "width": { "type": "integer", "description": "Photo width in pixels" }, "height": { "type": "integer", "description": "Photo height in pixels" }, "encodingFormat": { "type": "string" }, "sizeInBytes": { "type": "integer", "format": "int64" } } }