{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-get-data-quality-ruleset-evaluation-run-response-schema.json", "title": "GetDataQualityRulesetEvaluationRunResponse", "description": "GetDataQualityRulesetEvaluationRunResponse schema from Amazon Glue API", "type": "object", "properties": { "RunId": { "allOf": [ { "$ref": "#/components/schemas/HashString" }, { "description": "The unique run identifier associated with this run." } ] }, "DataSource": { "allOf": [ { "$ref": "#/components/schemas/DataSource" }, { "description": "The data source (an Glue table) associated with this evaluation run." } ] }, "Role": { "allOf": [ { "$ref": "#/components/schemas/RoleString" }, { "description": "An IAM role supplied to encrypt the results of the run." } ] }, "NumberOfWorkers": { "allOf": [ { "$ref": "#/components/schemas/NullableInteger" }, { "description": "The number of G.1X workers to be used in the run. The default is 5." } ] }, "Timeout": { "allOf": [ { "$ref": "#/components/schemas/Timeout" }, { "description": "The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours)." } ] }, "AdditionalRunOptions": { "allOf": [ { "$ref": "#/components/schemas/DataQualityEvaluationRunAdditionalRunOptions" }, { "description": "Additional run options you can specify for an evaluation run." } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/TaskStatusType" }, { "description": "The status for this run." } ] }, "ErrorString": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The error strings that are associated with the run." } ] }, "StartedOn": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time when this run started." } ] }, "LastModifiedOn": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "A timestamp. The last point in time when this data quality rule recommendation run was modified." } ] }, "CompletedOn": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time when this run was completed." } ] }, "ExecutionTime": { "allOf": [ { "$ref": "#/components/schemas/ExecutionTime" }, { "description": "The amount of time (in seconds) that the run consumed resources." } ] }, "RulesetNames": { "allOf": [ { "$ref": "#/components/schemas/RulesetNames" }, { "description": "A list of ruleset names for the run." } ] }, "ResultIds": { "allOf": [ { "$ref": "#/components/schemas/DataQualityResultIdList" }, { "description": "A list of result IDs for the data quality results for the run." } ] } } }