OperationResult schema from Apache ORC
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-orc/refs/heads/main/json-schema/apache-orc-operation-result-schema.json", "title": "OperationResult", "description": "OperationResult schema from Apache ORC", "type": "object", "properties": { "status": { "type": "string", "enum": [ "success", "failure" ], "example": "success" }, "outputPath": { "type": "string", "example": "data/merged.orc" }, "rowsWritten": { "type": "integer", "example": 2000000 } } }