{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteExpenseCategoryResponse", "title": "DeleteExpenseCategoryResponse", "type": "object", "required": [ "status_code", "status", "service", "resource", "operation", "data" ], "properties": { "status_code": { "type": "integer", "description": "HTTP Response Status Code", "example": 200 }, "status": { "type": "string", "description": "HTTP Response Status", "example": "OK" }, "service": { "type": "string", "description": "Apideck ID of service provider", "example": "netsuite" }, "resource": { "type": "string", "description": "Unified API resource name", "example": "ExpenseCategories" }, "operation": { "type": "string", "description": "Operation performed", "example": "delete" }, "data": { "$ref": "#/components/schemas/UnifiedId" }, "_raw": { "$ref": "#/components/schemas/Raw" } } }