{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-schema/amazon-step-functions-start-sync-execution-input-schema.json", "title": "StartSyncExecutionInput", "description": "StartSyncExecutionInput schema from Amazon Step Functions API", "type": "object", "properties": { "stateMachineArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the state machine to execute." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the execution." } ] }, "input": { "allOf": [ { "$ref": "#/components/schemas/SensitiveData" }, { "description": "

The string that contains the JSON input data for the execution, for example:

\"input\": \"{\\\"first_name\\\" : \\\"test\\\"}\"

If you don't include any JSON input data, you still must include the two braces, for example: \"input\": \"{}\"

Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

" } ] }, "traceHeader": { "allOf": [ { "$ref": "#/components/schemas/TraceHeader" }, { "description": "Passes the X-Ray trace header. The trace header can also be passed in the request payload." } ] } }, "required": [ "stateMachineArn" ] }