{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediapackage/refs/heads/main/json-schema/mediapackage-api-ingest-endpoint-schema.json", "title": "IngestEndpoint", "description": "An endpoint for ingesting source content for a Channel.", "type": "object", "properties": { "Id": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "id" }, "description": "The system generated unique identifier for the IngestEndpoint" } ] }, "Password": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "password" }, "description": "The system generated password for ingest authentication." } ] }, "Url": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "url" }, "description": "The ingest URL to which the source stream should be sent." } ] }, "Username": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "username" }, "description": "The system generated username for ingest authentication." } ] } } }