{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-list-data-quality-results-response-schema.json", "title": "ListDataQualityResultsResponse", "description": "ListDataQualityResultsResponse schema from Amazon Glue API", "type": "object", "properties": { "Results": { "allOf": [ { "$ref": "#/components/schemas/DataQualityResultDescriptionList" }, { "description": "A list of DataQualityResultDescription objects." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/PaginationToken" }, { "description": "A pagination token, if more results are available." } ] } }, "required": [ "Results" ] }