Determines the collection of sections in the Marketplace store that this capsule is visible. For more information, see the Choose Store Sections section in the Preparing for Release topic.
store-sections{
section (TravelAndTransportation)
}
store-countries {
store-sections {
section (GamesAndFun)
}
You can add restrictions to the various store sections using the visibility-constraints
:
capsule {
...
store-sections {
section (ArtAndLifestyle) {
visibility-constraints { // used to limit which store sections your capsule can be seen in
country-constraints { //one of the constraint options
//either
blocked-list {
block (US)
}
//or
allowed-list {
allow (KR)
}
}
}
}
}
}
section optional | The specific section of the Marketplace store that this capsule is available |