{ "$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-mapping-request-schema.json", "title": "GetMappingRequest", "description": "GetMappingRequest schema from Amazon Glue API", "type": "object", "properties": { "Source": { "allOf": [ { "$ref": "#/components/schemas/CatalogEntry" }, { "description": "Specifies the source table." } ] }, "Sinks": { "allOf": [ { "$ref": "#/components/schemas/CatalogEntries" }, { "description": "A list of target tables." } ] }, "Location": { "allOf": [ { "$ref": "#/components/schemas/Location" }, { "description": "Parameters for the mapping." } ] } }, "required": [ "Source" ] }