{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DataModelingJob", "title": "DataModelingJob", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "saved_query_id": { "type": "string", "format": "uuid", "nullable": true, "readOnly": true }, "status": { "allOf": [ { "$ref": "#/components/schemas/DataModelingJobStatusEnum" } ], "readOnly": true }, "rows_materialized": { "type": "integer", "readOnly": true }, "error": { "type": "string", "readOnly": true, "nullable": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "last_run_at": { "type": "string", "format": "date-time", "readOnly": true }, "workflow_id": { "type": "string", "readOnly": true, "nullable": true }, "workflow_run_id": { "type": "string", "readOnly": true, "nullable": true }, "rows_expected": { "type": "integer", "readOnly": true, "nullable": true, "description": "Total rows expected to be materialized" } }, "required": [ "created_at", "error", "id", "last_run_at", "rows_expected", "rows_materialized", "saved_query_id", "status", "workflow_id", "workflow_run_id" ] }