{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-send-project-session-action-request-schema.json", "title": "SendProjectSessionActionRequest", "description": "SendProjectSessionActionRequest schema from Amazon Glue DataBrew API", "type": "object", "properties": { "Preview": { "allOf": [ { "$ref": "#/components/schemas/Preview" }, { "description": "If true, the result of the recipe step will be returned, but not applied." } ] }, "RecipeStep": { "$ref": "#/components/schemas/RecipeStep" }, "StepIndex": { "allOf": [ { "$ref": "#/components/schemas/StepIndex" }, { "description": "The index from which to preview a step. This index is used to preview the result of steps that have already been applied, so that the resulting view frame is from earlier in the view frame stack." } ] }, "ClientSessionId": { "allOf": [ { "$ref": "#/components/schemas/ClientSessionId" }, { "description": "A unique identifier for an interactive session that's currently open and ready for work. The action will be performed on this session." } ] }, "ViewFrame": { "$ref": "#/components/schemas/ViewFrame" } } }