{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-create-progress-update-stream-request-schema.json", "title": "CreateProgressUpdateStreamRequest", "description": "CreateProgressUpdateStreamRequest schema from Amazon Migration Hub API", "type": "object", "properties": { "ProgressUpdateStreamName": { "allOf": [ { "$ref": "#/components/schemas/ProgressUpdateStream" }, { "description": "The name of the ProgressUpdateStream. Do not store personal data in this field. " } ] }, "DryRun": { "allOf": [ { "$ref": "#/components/schemas/DryRun" }, { "description": "Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call." } ] } }, "required": [ "ProgressUpdateStreamName" ] }