Skip to content
Tools/Spec Introspection/get_region_for_entity_type

get_region_for_entity_type

Resolve which super-domain region contains a given entity type. Wraps `getRegionForEntityType`; returns the full `UPGRegion` record. Use for adapters and copilots that route or render an entity by its super-domain.

Spec Introspectionatomic (read-only)

Arguments

entity_typestringrequired

Canonical entity type (e.g. "persona", "feature", "metric").

Returns

JSON: the full UPGRegion record.

Examples

Live call against the Notion example graph.

Input

{
  "entity_type": "outcome"
}

Output

{
  "id": "strategy_outcomes",
  "label": "Strategy & Outcomes",
  "order": 1,
  "shape": "cascade",
  "mental_model": "Aspiration → direction → bet → measurable → proof.",
  "operators": [
    "CEO",
    "PM",
    "leadership",
    "strategy team"
  ],
  "composes_atomic_domains": [
    "strategy"
  ],
  "entities": [
    {
      "type": "vision",
      "role": "root"
    },
    {
      "type": "mission",
      "role": "container"
    },
    {
      "type": "strategic_pillar",
      "role": "hub"
    },
    {
      "type": "strategic_theme",
      "role": "container"
    },
    {
      "type": "initiative",
      "role": "container"
    },
    {
      "type": "capability",
      "role": "leaf"
    },
    {
      "type": "value_stream",
      "role": "container"
    },
    {
      "type": "objective",
      "role": "anchor"
    },
    {
      "type": "key_result",
      "role": "hub"
    },
    {
      "type": "metric",
      "role": "leaf",
      "notes": "shared with Analytics"
    },
    {
      "type": "decision",
      "role": "hub",
      "notes": "polymorphic across domains"
    },
    {
      "type": "assumption",
      "role": "leaf"
    },
    {
      "type": "outcome",
      "role": "hub"
    }
  ],
  "anchor": {
    "type": "objective",
    "rationale": "The single entity where P5 language meets P3 measurement. The accountability question of strategy flows through
… (truncated)

See Also