Amazon Glue · JSON Structure

Glue Get Data Quality Result Response Structure

GetDataQualityResultResponse schema from Amazon Glue API

Type: object Properties: 11
AnalyticsData CatalogData IntegrationData PipelineETLServerless

GetDataQualityResultResponse is a JSON Structure definition published by Amazon Glue, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ResultId Score DataSource RulesetName EvaluationContext StartedOn CompletedOn JobName JobRunId RulesetEvaluationRunId RuleResults

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-get-data-quality-result-response-structure.json",
  "name": "GetDataQualityResultResponse",
  "description": "GetDataQualityResultResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "ResultId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HashString"
        },
        {
          "description": "A unique result ID for the data quality result."
        }
      ]
    },
    "Score": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericBoundedDouble"
        },
        {
          "description": "An aggregate data quality score. Represents the ratio of rules that passed to the total number of rules."
        }
      ]
    },
    "DataSource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataSource"
        },
        {
          "description": "The table associated with the data quality result, if any."
        }
      ]
    },
    "RulesetName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the ruleset associated with the data quality result."
        }
      ]
    },
    "EvaluationContext": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "In the context of a job in Glue Studio, each node in the canvas is typically assigned some sort of name and data quality nodes will have names. In the case of multiple nodes, the <code>evaluationContext</code> can differentiate the nodes."
        }
      ]
    },
    "StartedOn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the run for this data quality result started."
        }
      ]
    },
    "CompletedOn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the run for this data quality result was completed."
        }
      ]
    },
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The job name associated with the data quality result, if any."
        }
      ]
    },
    "JobRunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HashString"
        },
        {
          "description": "The job run ID associated with the data quality result, if any."
        }
      ]
    },
    "RulesetEvaluationRunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HashString"
        },
        {
          "description": "The unique run ID associated with the ruleset evaluation."
        }
      ]
    },
    "RuleResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataQualityRuleResults"
        },
        {
          "description": "A list of <code>DataQualityRuleResult</code> objects representing the results for each rule. "
        }
      ]
    }
  }
}