GetBlueprintRequest schema from Amazon Glue API
{ "$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-blueprint-request-schema.json", "title": "GetBlueprintRequest", "description": "GetBlueprintRequest schema from Amazon Glue API", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "The name of the blueprint." } ] }, "IncludeBlueprint": { "allOf": [ { "$ref": "#/components/schemas/NullableBoolean" }, { "description": "Specifies whether or not to include the blueprint in the response." } ] }, "IncludeParameterSpec": { "allOf": [ { "$ref": "#/components/schemas/NullableBoolean" }, { "description": "Specifies whether or not to include the parameter specification." } ] } }, "required": [ "Name" ] }