Skip to content
Tools/Spec Introspection/get_region

get_region

Return the full `UPGRegion` record by id: anchor entity (with rationale and inbound/outbound cross-edge counts), entity memberships with structural roles, intra-domain edge keys, boundary edges to other regions, shape archetype, atomic-domain composition.

Spec Introspectionatomic (read-only)

Arguments

idstringrequired

Region id (e.g. "strategy_outcomes", "users_needs", "product_delivery"). See UPG_REGIONS for the full list of 10.

Returns

JSON: the full UPGRegion record.

Examples

Live call against the Notion example graph.

Input

{
  "id": "strategy_outcomes"
}

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