{ "$schema": "https://json-structure.org/meta/core/v0", "$id": "https://raw.githubusercontent.com/api-evangelist/utrecht/main/json-structure/utrecht-yoda-result-structure.json", "name": "YodaResult", "description": "JSON Structure for the standard Yoda API response envelope used by all Core and Datarequest operations.", "type": "object", "properties": { "status": { "type": "string", "description": "Status identifier; 'ok' on success or an error ID on failure." }, "status_info": { "type": ["string", "null"], "description": "Human-readable status or error description." }, "data": { "type": "any", "description": "Operation-specific payload; object, array, scalar, or null." } }, "required": ["status", "status_info", "data"] }