{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconnect/refs/heads/main/json-schema/mediaconnect-api-bridge-flow-output-schema.json", "title": "BridgeFlowOutput", "description": "The output of the bridge. A flow output is delivered to the AWS cloud.", "type": "object", "properties": { "FlowArn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "flowArn" }, "description": "The Amazon Resource Number (ARN) of the cloud flow." } ] }, "FlowSourceArn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "flowSourceArn" }, "description": "The Amazon Resource Number (ARN) of the flow source." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "name" }, "description": "The name of the bridge's output." } ] } }, "required": [ "FlowSourceArn", "FlowArn", "Name" ] }