as

Settings
Sign out
Notifications
Alexa
Amazonアプリストア
Ring
AWS
ドキュメント
Support
Contact Us
My Cases
開発
テスト
公開
収益化
ユーザーエンゲージメント
デバイスの仕様
リソース
アクセスいただきありがとうございます。こちらのページは現在英語のみのご用意となっております。順次日本語化を進めてまいりますので、ご理解のほどよろしくお願いいたします。

EMBER Specification Overview

The Enhanced Metadata Bridge for Entertainment Resources (EMBER) is Amazon's XML schema for describing entertainment content metadata. The schema provides a structured, extensible format for representing diverse content types and their associated metadata across streaming and broadcast television.

EMBER currently supports the following content types:

  • Video-on-demand programming – movies, TV series, and documentaries
  • Linear broadcast content – TV channels, Free Ad-Supported Television (FAST) channels, and 24-hour schedules
  • Live event programming – sports events, concerts, and special performances

The schema replaces Amazon's legacy Catalog Data Format (CDF) with enhanced capabilities for modern streaming services, including improved localization support, comprehensive relationship modeling, and flexible policy management.

Schema information
Property Value
XSD file EMBER_1.0.0.xsd
Schema version 1.0.0

XSD schema architecture

Every EMBER document contains one DataCollections root element that serves as the top-level container for all catalog types.

<?xml version="1.0" encoding="UTF-8"?>
<DataCollections schemaVersion="1.0.0">
    <!-- One or more catalog elements -->
</DataCollections>

The optional schemaVersion attribute identifies the EMBER schema version. The default value is 1.0.0. This attribute enables version-aware processing, which supports future schema evolution.

Catalog types

EMBER organizes metadata into six specialized catalog types, each addressing a specific aspect of the content delivery chain. The following table describes each catalog type and its key elements. For examples of each catalog type, see EMBER Examples.

Catalog Contains Key elements Description
ProgramCatalog Movie, TVEpisode, TVSeason, TVSeries, SportsEvent, Event, OffAir, Other, ToBeAnnounced, Extra Titles, Descriptions, Synopses, Images, Genres, Keywords, Ratings, Studios, Credits, RunLengths, ReleaseDates, Relationships Defines content metadata.

For example, what programs exist and their descriptive attributes.
ScheduleCatalog Schedule Airing, AudioLanguages, SubtitleLanguages, GeoRestrictions Defines broadcast timing.

For example, when programs air on specific stations.
OfferCatalog ProgramOffers, ProgramAiringOffers, StationOffers, ProgramDiscovery Entitlements, AudioLanguages, SubtitleLanguages, VideoResolutions, GeoRestrictions, LaunchTargets, Ranks, Badges Defines access and discovery.

For example, how customers interact with content.
StationCatalog Station, ExternalStation Titles, Images, CallSign, OriginalBroadcastType, AffiliatedNetworks, VideoResolutions, AudioLanguages Defines broadcast channels and networks.

For example, the distribution outlets for linear content.
LineupCatalog Lineup Channels, StationTransport, GeoRestrictions Defines channel organization.

For example, how stations are packaged for providers.
PolicyCatalog RegionPolicy, EntitlementPolicy Region, PostalCode, EntitlementId, ShortDisplayNames, LongDisplayNames Defines reusable rules.

For example, geographic restrictions and entitlement tiers.

Core concepts

This section covers the foundational concepts that apply across all EMBER catalog types.

Element order dependency

The EMBER schema uses xs:sequence within each program type and entity. Child elements at those levels must appear in the exact order defined in the XSD schema. Incorrect element ordering causes XML validation failure, even if all required elements are present. For example, elements within Movie and within nested containers such as Credits, must follow XSD-defined order.

However, the root DataCollections element and the catalog containers (ProgramCatalog, ScheduleCatalog, OfferCatalog, StationCatalog, LineupCatalog, PolicyCatalog) use xs:choice, so their child elements can appear in any order. For example, within a ProgramCatalog, program types such as Movie, TVEpisode, and TVSeries can appear in any order.

Valid movie example – Correct order

The following example shows the correct element order for a Movie element.

<Movie id="MOVIE_123" version="1">
    <!-- Must appear in this exact order per XSD: -->
    <ExternalIds>...</ExternalIds>
    <Titles>...</Titles>
    <Descriptions>...</Descriptions>
    <Synopses>...</Synopses>
    <Images>...</Images>
    <Genres>...</Genres>
    <Keywords>...</Keywords>
    <Ratings>...</Ratings>
    <Studios>...</Studios>
    <Credits>...</Credits>
    <Tags>...</Tags>
    <RunLengths>...</RunLengths>
    <PictureColor>...</PictureColor>
    <ReleaseDates>...</ReleaseDates>
    <Relationships>...</Relationships>
</Movie>

Invalid movie example – Incorrect order

The following example shows what happens when elements appear out of order. The Genres element is placed before Images, which causes a validation error.

<Movie id="MOVIE_123" version="1">
    <Titles>...</Titles>
    <Genres>...</Genres>         <!-- Wrong position -->
    <Images>...</Images>         <!-- Should come before Genres -->
    <!-- XSD Validation Error: Element 'Genres' unexpected,
         expected 'Descriptions', 'Synopses', or 'Images' -->
</Movie>

Optional elements can be omitted, but any elements you include must appear in their correct sequence position.

Cross-catalog references

EMBER catalogs reference each other through a structured reference system that maintains referential integrity and enables flexible organization. The reference system links entities across catalogs without data duplication. There are two types of references: entity references and catalog references.

Entity references are attributes that link to specific entities by their ID. The following table describes these attributes.

Attribute name Description Used in
programRef References a program by ID. Points to Movie, TVSeries, TVSeason, TVEpisode, SportsEvent, Event, Extra, or Other. ProgramOffers, ProgramAiringOffers, ProgramDiscovery, Airing, Relationships
stationRef References a station by ID. Points to Station or ExternalStation. StationOffers, Schedule, Channel
policyRef References a policy by ID. Points to RegionPolicy or EntitlementPolicy. GeoRestriction, Entitlement

Catalog references are attributes that specify which catalog contains the referenced entity. If omitted, each attribute uses a default value:

  • programCatalogRef – Specifies which ProgramCatalog contains the program. Default: DEFAULT_PROGRAM_CATALOG.
  • stationCatalogRef – Specifies which StationCatalog contains the station. Default: DEFAULT_STATION_CATALOG.
  • policyCatalogRef – Specifies which PolicyCatalog contains the policy. Default: DEFAULT_POLICY_CATALOG.
  • scheduleCatalogRef – Specifies which ScheduleCatalog contains schedules. Default: DEFAULT_SCHEDULE_CATALOG.

The following examples show how a ProgramOffer catalog can reference a movie from a program catalog.

<!-- Simple reference using default catalog -->
<ProgramOffers id="OFFER_MOVIE_123" version="1" programRef="MOVIE_123">
    <!-- Resolves to Movie with id="MOVIE_123" in DEFAULT_PROGRAM_CATALOG -->
</ProgramOffers>
<!-- Explicit catalog reference -->
<ProgramOffers id="OFFER_MOVIE_123" version="1" programRef="MOVIE_123" programCatalogRef="VOD_CATALOG">
    <!-- Resolves to Movie with id="MOVIE_123" in catalog "VOD_CATALOG" -->
</ProgramOffers>

Parent elements can set default catalog references that children inherit and can override.

<Schedule programCatalogRef="LOCAL_PROGRAMS">
    <Airing programRef="PROG_1"/>  <!-- Uses LOCAL_PROGRAMS -->
    <Airing programRef="PROG_2"
            programCatalogRef="NETWORK_PROGRAMS"/>  <!-- Override -->
</Schedule>

EMBER maintains referential integrity by using following rules:

  • All references must resolve to existing entities.
  • The referenced ID must exist in the specified or default catalog, and the referenced entity must be the appropriate type, for example, a programRef must point to a program, not a station.
  • Circular dependencies aren't allowed.

Identifiers

Every entity in EMBER has a unique id attribute that serves as its primary identifier. The id attribute must meet the following requirements:

  • Durable – Don't change the ID after entity creation.
  • Unique – The ID must be unique within your partner namespace and entity type.
  • Case-sensitiveMOVIE_123 and movie_123 are different IDs.
  • Format – Alphanumeric characters plus _, -, ., and : are valid.
  • Minimum length – One character.

The following table shows recommended naming conventions.

Entity type Pattern Example
Movie MOVIE_TITLE_YEAR MOVIE_AVENGERS_2024
TV series SERIES_TITLE SERIES_FRIENDS
TV season SERIES_S## SERIES_FRIENDS_S01
TV episode SERIES_S##E## SERIES_FRIENDS_S01E01
Sports event LEAGUE_SEASON_DETAILS NFL_2025_W01_SEA_SF
Station CALLSIGN_NETWORK_CITY KIRO_CBS_SEATTLE

This example shows how to apply this naming convention to a Movie element.

<Movie id="MOVIE_AVENGERS_2024" version="1">

External IDs

External identifiers link EMBER entities to external metadata systems, enabling content matching and cross-system tracking.

<ExternalIds>
    <ExternalId scheme="scheme_name">identifier_value</ExternalId>
</ExternalIds>

The following table lists supported external ID schemes.

Scheme System Used for Example
imdb Internet Movie Database Movies, TV, people tt0076759, nm0000123
tms Tribune Media Services Movies, TV, stations MV123456789012, TMS87654321
gvd Gracenote Video Data Movies, TV, stations GVD_HBO_EAST, GVD_12345
isan International Standard Audiovisual Number Movies, TV 0000-0000-0000-0000-0-0000-0000-0
eidr Entertainment Identifier Registry Movies, TV 10.5240/XXXX-XXXX-XXXX-XXXX-XXXX-X
asin Amazon Standard Identification Number Amazon content B09ABCD123
ean European Article Number Physical media 5051890000000
upc Universal Product Code Physical media 012345678905
sportsradar Sports Radar Sports events, teams, players sr:match:12345678

As a best practice, include all available external IDs to improve content matching and deduplication accuracy.

Versioning

The version attribute provides optimistic concurrency control, ensuring consistency when updates arrive out of order. The version value is an integer—either sequential or timestamp-based—where a higher number takes precedence. The system ignores lower versions, even if they arrive later. The default value is 1 if omitted.

<!-- Initial creation -->
<Movie id="MOVIE_123" version="1">...</Movie>

<!-- Update with higher version -->
<Movie id="MOVIE_123" version="2">...</Movie>

<!-- Later update -->
<Movie id="MOVIE_123" version="5">...</Movie>

<!-- Out-of-order update ignored (version too low) -->
<Movie id="MOVIE_123" version="3">...</Movie>  <!-- Ignored, current is 5 -->

Common version strategies include:

  • Sequential – Increment by one for each update: 1, 2, 3, and so on.
  • Timestamp – Use Unix epoch seconds: 1713622889, 1713622890, and so on.
  • Hybrid – Combine date and sequence: 20250420001, 20250420002, and so on.

Localization

EMBER provides multi-language, multi-territory support through three coordinated attributes:

  • language – A BCP-47 language code, such as en, es, es-MX, pt-BR, or fr-CA.
  • territoriesISO 3166-1 alpha-2 country codes, comma-separated or GLOBAL. For example, US, US,CA,MX, or GLOBAL.
  • default – A boolean flag (true or false) that marks the fallback value.

EMBER uses fallback resolution logic to display the most appropriate localized content. When a customer requests content, the system searches in this order:

  1. Exact match – Both language and territories match.
  2. Language match – Language matches, territories ignored.
  3. Default fallback – Uses the entry with default="true".
<Titles>
    <Title language="en" default="true">The Avengers</Title>
    <Title language="en" territories="GB">Marvel Avengers Assemble</Title>
    <Title language="es">Los Vengadores</Title>
</Titles>

In this example:

  • A UK customer (en-GB) sees "Marvel Avengers Assemble" through exact match.
  • A US customer (en-US) sees "The Avengers" through language match to default.
  • A Spanish customer (es-MX) sees "Los Vengadores" through language match.
  • A German customer (de-DE) sees "The Avengers" through default fallback.

Localization rules:

  • One entry must have default="true" per property.
  • The default should be the original or primary language.
  • Use simple language codes such as en and es unless dialect differentiation is needed.
  • Use territories="GLOBAL" or omit the attribute for worldwide content.

The following is a list of common country codes:

  • US (United States)
  • CA (Canada)
  • MX (Mexico)
  • GB (United Kingdom)
  • DE (Germany)
  • FR (France)
  • ES (Spain)
  • IT (Italy)
  • JP (Japan)
  • AU (Australia)
  • BR (Brazil)
  • IN (India)

For more country codes, visit ISO 3166-1 alpha-2.

Relationships

EMBER models content hierarchies and associations through structured Relationship elements within programs.

Television content follows a three-level hierarchy connected by relationship elements.

TVSeries
└─ isSeasonOfSeries (seasonNum) → TVSeason
   └─ isEpisodeOfSeason (episodeNum) → TVEpisode

In this hierarchy:

  • TVSeries links to TVSeason by isSeasonOfSeries using the seasonNum attribute.
  • TVSeason links to TVEpisode by isEpisodeOfSeason using the episodeNum attribute.

The following table describes the available relationship types.

Relationship From To Required attributes Purpose
isSeasonOfSeries TVSeason TVSeries seasonNum Links season to parent series
isEpisodeOfSeason TVEpisode TVSeason episodeNum Links episode to parent season
isEpisodeOfSeries TVEpisode TVSeries episodeNum Links episode to parent series. Mini series uses isEpisodeOfSeries without isEpisodeOfSeason.
isExtraOf Extra Any program orderNum (optional) Links bonus content to main content
isRelatedTo Any program Any program None General content relationship

Required relationships:

  • TVSeason – Must include isSeasonOfSeries.
  • TVEpisode – For regular TV series episodes, include isEpisodeOfSeason and isEpisodeOfSeries. For mini series episodes, include isEpisodeOfSeries.
  • Extra – Should include isExtraOf (recommended but not required).

Create entities in this order:

  1. TVSeries
  2. TVSeason
  3. TVEpisode

TV episode relationship example

This example shows a TVEpisode that links to both its parent season and parent series using isEpisodeOfSeason and isEpisodeOfSeries.

<TVEpisode id="FRIENDS_S01E01" version="1">
    <Titles>
        <Title language="en" default="true">The One Where Monica Gets a Roommate</Title>
    </Titles>
    <Relationships>
        <isEpisodeOfSeason programRef="FRIENDS_S01"
                episodeNum="1" premiere="true"/>
        <isEpisodeOfSeries programRef="FRIENDS" episodeNum="1"/>
    </Relationships>
</TVEpisode>

Extra relationship example

Extras link to main content by using isExtraOf.

<Extra id="AVENGERS_TRAILER" version="1" category="trailer">
    <Titles>
        <Title language="en" default="true">The Avengers - Official Trailer</Title>
    </Titles>
    <Relationships>
        <isExtraOf programRef="MOVIE_AVENGERS_2024" orderNum="1"/>
    </Relationships>
</Extra>

General relationship example

Use isRelatedTo to create non-hierarchical connections between content.

<Movie id="HOBBIT_1" version="1">
    <Titles>
        <Title language="en" default="true">The Hobbit: An Unexpected Journey</Title>
    </Titles>
    <Relationships>
        <isRelatedTo programRef="LOTR_1"/>
        <isRelatedTo programRef="LOTR_2"/>
        <isRelatedTo programRef="LOTR_3"/>
    </Relationships>
</Movie>

Source attributes

Source attributes provide provenance tracking for editorial content, documenting where metadata originated. The attribute group includes:

  • sourceName – Name of the metadata provider, such as "IMDb", "Gracenote", or "Rotten Tomatoes."
  • sourceDate – Date the metadata was retrieved, in YYYY-MM-DD format.
  • sourceId – The provider's identifier for the data record.

All three attributes are optional, enabling flexible attribution based on available information. You can attach source attributes to any editorial element, including titles, descriptions, images, genres, ratings, and credits.

<Title language="en"
       default="true"
       sourceName="IMDb"
       sourceDate="2024-03-15"
       sourceId="tt0076759">Star Wars</Title>

<CustomerRating score="8.6"
                maxScore="10"
                numVotes="1500000"
                sourceName="IMDb"
                sourceDate="2024-03-15"/>

Delete and catalog actions

The Delete element removes entities from catalogs by using ID and version matching. A delete succeeds if the specified version is greater than or equal to the current entity version. The system ignores a delete if the specified version is lower than the current entity version. This protects against out-of-order message delivery.

<ProgramCatalog id="MY_CATALOG" version="1">
    <!-- Remove expired movie -->
    <Delete id="OLD_MOVIE" version="100"/>

    <!-- Remove multiple entities -->
    <Delete id="EXPIRED_SERIES" version="50"/>
    <Delete id="EXPIRED_SEASON" version="25"/>
</ProgramCatalog>

When deleting hierarchical content, delete children before parents, as shown in this example.

<!-- Correct order -->
<Delete id="SERIES_S01E01" version="10"/>  <!-- Episode first -->
<Delete id="SERIES_S01" version="5"/>      <!-- Season second -->
<Delete id="SERIES_1" version="3"/>        <!-- Series last -->

The catalog action attribute controls catalog-level update behavior. The following table describes the available values.

Action Behavior Use case
upsert (default) Adds new entities, updates existing entities, and preserves others. Incremental updates. This is the most common action.
replace Removes all existing entities and adds new ones. Complete catalog rebuild. Use with caution.

The following example uses action="upsert" to add a new movie, update an existing movie, and delete an expired movie without affecting the rest of the catalog.

<!-- Incremental update -->
<ProgramCatalog id="MY_CATALOG" version="1" action="upsert">
    <Movie id="NEW_MOVIE" version="1"><!-- ... --></Movie>  <!-- Added -->
    <Movie id="EXISTING" version="2"><!-- ... --></Movie>   <!-- Updated -->
    <Delete id="OLD_MOVIE" version="5"/>                    <!-- Removed -->
    <!-- All other existing movies unchanged -->
</ProgramCatalog>

This example uses action="replace" to rebuild the entire catalog, which removes any movies not included in the submission.

<!-- Complete replacement -->
<ProgramCatalog id="MY_CATALOG" version="1" action="replace">
    <Movie id="MOVIE_1"><!-- ... --></Movie>
    <Movie id="MOVIE_2"><!-- ... --></Movie>
    <!-- Only these movies exist after ingestion -->
</ProgramCatalog>

Use action="upsert" for regular updates. Reserve action="replace" for complete catalog rebuilds and full refreshes.

Data type reference

The EMBER schema uses both built-in XML data types and custom EMBER-specific data types. The following tables describe each type.

Built-in XML data types

Data type Format or range Description
boolean true, false Boolean values. Used for flags such as default, adultProduct, notRated, closed, homeTeam, premiere, and finale.
decimal Any decimal number Numbers with fractional components, such as 5.2, 8.99, or 100.0. Used for prices and rating scores. Example: score="4.8" maxScore="5".
int -2147483648 through 2147483647 Standard integers. Used for counts and year values in copyright.
long -9223372036854775808 through 9223372036854775807 Large integers. Used for version numbers and timestamps. Examples: version="1", version="1713622889".
nonNegativeInteger 0, 1, 2, 3, … Zero or positive integers. Used for seasonNum, episodeNum, and orderNum. Examples: seasonNum="1", episodeNum="5".
positiveInteger 1,2, 3, … Positive integers with a minimum of 1. Used when zero isn't valid.
string Any text General text content. Used for names, descriptions, and URLs. Supports Unicode for international characters.
unsignedInt 0 through 4294967295 Non-negative integers with large range. Used for numVotes in customer ratings.

EMBER-specific data types

Data type Format or values Description
AspectRatioType 16:9, 4:3, 3:4, 2:3, 1:1, other Image aspect ratios:
  • 16:9 – Widescreen
  • 4:3 – Standard TV
  • 3:4 – Portrait
  • 2:3 – Poster
  • 1:1 – Square
  • other – Other aspect ratio
CatalogActionType upsert, replace Catalog update behavior:
  • upsert – Incremental (default)
  • replace – Complete rebuild
DateTimeType YYYY-MM-DDTHH:MM:SS±HH:MM ISO-8601 date-time with time zone. Time zone is required as Z or ±offset.
Examples: 2025-04-20T15:30:00Z (Coordinated Universal Time), 2025-04-20T08:30:00-07:00 (PST).
DateType YYYY-MM-DD ISO-8601 date format. Used for schedule dates and release dates.
Examples: 2025-04-20, 2025-12-31.
DurationType P[n]Y[n]M[n]DT[n]H[n]M[n]S ISO-8601 duration.
  • P – Period prefix (required)
  • T – Time separator
Use T for time components.
Examples: PT30M (30 minutes), PT2H (2 hours), PT1H30M (1 hour 30 minutes).
EditTypeList ORIGINAL, DIRECTORSCUT, EXTENDED, UNRATED, CENSORED, REGIONALIZED, COLORIZED, SHORTENED A comma-separated list that indicates the edit version of the program. Valid edit types:
  • ORIGINAL – Default version if no special edit
  • DIRECTORSCUT – Director's preferred version
  • EXTENDED – Extended with additional scenes
  • UNRATED – Without rating board cuts
  • CENSORED – Content cleaned for family viewing
  • REGIONALIZED – Country or region specific edit
  • COLORIZED – Color version produced from black and white version
  • SHORTENED – Materials removed for other than censorship reasons
Example: edit="DIRECTORSCUT,UNRATED"
EntitlementTypeEnumType free, subscription Entitlement types:
  • free – Content is available for free.
  • subscription – Content requires a subscription or an add-on subscription. For example, premium tier content or a sports add-on.
Use policyRef for complex tiers.
ExtraCategoryType trailer, teaser, clip, featurette, behindthescenes, deletedscenes, bloopers, commentary, interview, highlights, preevent, postevent Enumeration that represents the category of extra content. The extra content must relate to the original content, such as the movie or TV series available in the catalog. Valid values:
  • teaser – Brief preview offering hints without revealing plot details
  • trailer – Comprehensive preview showcasing story, characters, and themes
  • clip – Short excerpt demonstrating specific scenes or moments
  • featurette – Supplementary content about the production process, including making-of material
  • behindthescenes – Raw footage showing production process and on-set activities
  • deletedscenes – Content removed from the final release
  • bloopers – Outtakes and on-set mistakes
  • commentary – Additional audio or video featuring creator insights
  • interview – Conversations with cast, crew, or post-game interviews
  • highlights – Key moments or best parts compilation
  • preevent – Content leading up to the main event
  • postevent – Follow-up content after the main event
ID Alphanumeric plus the characters: _ - . : Partner identifiers. Minimum length one character. Case-sensitive.
Example: id="MOVIE_AVENGERS_2024".
ImageCategory background, cover, poster, episodic, title, logo Image types:
  • background – No text
  • cover – Burned-in title
  • poster – Vertical art
  • episodic – Still frame
  • title – Title treatment
  • logo – Station logo
ImageColorType color, white, light, black, gray, dark Logo color variants for different UI backgrounds.
LanguageType BCP-47 codes Language tags.
Examples: en (English), es (Spanish), es-MX (Mexican Spanish), pt-BR (Brazilian Portuguese), fr-CA (Canadian French), zh-Hans (Simplified Chinese).
LaunchTargetTypeEnum WEB, FIRETV Launch target types for launch URLs:
  • WEB – Web browser
  • FIRETV – Fire TV app
LocalizedStringType string with attributes A string with the addition of the language, territories, and default attributes.
MimeType image/jpeg, image/png Image formats. JPEG for photos and backgrounds, PNG for logos with transparency.
OriginalBroadcastType Full Power Broadcast, Low Power Broadcast, Cable Only, Satellite, Over the Top, Network, TV, VOD, Radio, Digital Broadcast Network, Split The type of broadcast the station provides. An example of Split is full power broadcast during the day and low power broadcast at night.
PictureColorEnumType color, bandw, colorized, composite, unknown Picture color characteristics:
  • color – Color picture
  • bandw – Black and white
  • colorized – Colorized from black and white
  • composite – Mixed
  • unknown – Unknown picture color
PolicyFilterType allow_all, allow_only, block_only Geographic filters for postal codes:
  • allow_all – Allows all postal codes in the region regardless of the PostalCode list.
  • allow_only – Allows only the postal codes listed in the PostalCode elements.
  • block_only – Blocks only the postal codes listed in the PostalCode elements.
ReleaseType theater, video, streaming Distribution mechanism for the release:
  • theater – Available in movie theaters
  • video – Available through physical media such as Blu-ray, DVD, or digital download
  • streaming – Available through a VOD service without a perpetual license
ResolutionType 8K, 4K, FullHD, HD, SD Video resolution levels in descending order of quality.
SourceDateType string Defines the pattern for a date and time. Represents the date that the provider in the sourceName attribute delivered the data.
SourceIdType string The identifier associated with this piece of data, provided by the source in the sourceName attribute.
SourceNameType string The name of the provider of the metadata contained in this element.
TerritoriesType ISO 3166-1 alpha-2 Country codes, comma-separated.
Examples: US, US,CA,MX, GLOBAL.
Common codes: US, CA, MX, GB, DE, FR, ES, IT, JP, AU, BR, IN.

Last updated: May 27, 2026