{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-segment-delivery-configuration-schema.json",
"title": "SegmentDeliveryConfiguration",
"description": "The segment delivery configuration settings.",
"type": "object",
"properties": {
"BaseUrl": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as https://example.com/some/path. To use a relative URL specify the relative path, such as /some/path*."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "A unique identifier used to distinguish between multiple segment delivery configurations in a source location."
}
]
}
}
}