{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-schema/appflow-start-flow-request-schema.json", "title": "StartFlowRequest", "description": "StartFlowRequest schema from Amazon AppFlow API", "type": "object", "properties": { "flowName": { "type": "string", "maxLength": 256, "example": "my-salesforce-to-s3-flow", "description": "The specified name of the flow." }, "clientToken": { "type": "string", "example": "client-token-500123", "description": "Idempotency token." } }, "required": [ "flowName" ] }