SegmentationHierarchyScopes

SegmentationHierarchyScopes
Segmentation Hierarchy Scopes

Defines the mapping of CSV columns to segmentation hierarchy levels. The hierarchy follows a fixed order: Region -> Zone -> Environment -> Application -> Tier. Not all levels need to be specified, but if a lower level is specified, all parent levels must also be specified (e.g., to use Tier, you must specify Application).

Notes:

  • The hierarchy follows a strict top-down order: Region -> Zone -> Environment -> Application -> Tier; a lower level cannot be specified without all its parent levels.
  • Omitting a level means the CSV does not provide that scope, which limits the depth of segmentation object hierarchy that can be generated.
  • Column names are case-sensitive and must exactly match the column headers from the uploaded CSV.
JSON Example
{
    "region_scope": "string",
    "zone_scope": "string",
    "environment_scope": "string",
    "application_scope": "string",
    "application_tier_scope": "string"
}
string
region_scope
Optional

Column name for the region/site level of the hierarchy

string
zone_scope
Optional

Column name for the availability zone level of the hierarchy

string
environment_scope
Optional

Column name for the environment level (e.g., prod, dev, staging)

string
application_scope
Optional

Column name for the application level

string
application_tier_scope
Optional

Column name for the application tier level (e.g., web, app, db)