{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-list-sessions-request-structure.json", "name": "ListSessionsRequest", "description": "ListSessionsRequest schema from Amazon Glue API", "type": "object", "properties": { "NextToken": { "allOf": [ { "$ref": "#/components/schemas/OrchestrationToken" }, { "description": "The token for the next set of results, or null if there are no more result. " } ] }, "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/PageSize" }, { "description": "The maximum number of results. " } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagsMap" }, { "description": "Tags belonging to the session. " } ] }, "RequestOrigin": { "allOf": [ { "$ref": "#/components/schemas/OrchestrationNameString" }, { "description": "The origin of the request. " } ] } } }