ListBlueprintsRequest 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-list-blueprints-request-schema.json", "title": "ListBlueprintsRequest", "description": "ListBlueprintsRequest schema from Amazon Glue API", "type": "object", "properties": { "NextToken": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "A continuation token, if this is a continuation request." } ] }, "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/PageSize" }, { "description": "The maximum size of a list to return." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagsMap" }, { "description": "Filters the list by an Amazon Web Services resource tag." } ] } } }