get_entity_meta
Return one `EntityTypeMeta` record by entity type name, plus resolved `domain_id` (null when unmapped). One type's lifecycle metadata: maturity tier, since-version, replacement target if deprecated. Pass the canonical name (e.g. "persona", "pain_point"), not the immutable `type_id`.
Spec Introspectionatomic (read-only)
Arguments
namestringrequiredCanonical entity type name.
Returns
JSON: EntityTypeMeta & { domain_id: string | null }
Examples
Live call against the Notion example graph.
Input
{
"name": "person"
}Output
{
"name": "person",
"type_id": "ent_349",
"maturity": "stable",
"since": "0.5.0",
"domain_id": "team_org"
}