{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "FunctionExecutionResult", "properties": { "success": { "type": "boolean", "title": "Success" }, "data": { "anyOf": [ {}, { "type": "null" } ], "title": "Data" }, "error": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Error" } }, "type": "object", "required": [ "success" ] }