HealthPlanNetwork
HealthPlanNetwork is an Intangible for a provider network within a HealthInsurancePlan. It adds 3 direct properties:
healthPlanNetworkId(Text): the network's identifier.healthPlanNetworkTier(Text): tier within the plan (Tier 1 in-network vs Tier 2 out-of-network).healthPlanCostSharing(Boolean): whether the network has cost-sharing (copays / coinsurance).
A single HealthInsurancePlan often has multiple HealthPlanNetwork entries — a primary Tier 1 network and a secondary Tier 2 network with different cost-sharing.
Full example of schema.org/HealthPlanNetwork json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HealthPlanNetwork",
"name": "Dunmora PPO Nationwide Network",
"healthPlanNetworkId": "NET-DMH-PPO-001",
"healthPlanNetworkTier": "Tier 1 (in-network)",
"healthPlanCostSharing": true
}
</script>Minimal valid version
The smallest markup that still produces a valid HealthPlanNetwork entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HealthPlanNetwork",
"name": "Dunmora PPO Nationwide Network",
"healthPlanNetworkId": "NET-DMH-PPO-001"
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsNo dedicated rich result
Common HealthPlanNetwork mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Single-network plans with no network tier
WrongHealthPlanNetwork with no tierRightAlways populate healthPlanNetworkTier, even on single-network plansTier signalling helps plan-comparison engines normalise coverage.
Schema properties in this example
Also mentioned in 1 other example
HealthPlanNetwork also appears in HealthInsurancePlan. See the full HealthPlanNetwork schema page for every reference.
About the example data
The Tier 1 Nationwide Network within the Dunmora PPO Gold 2026 plan.
Comments
Loading comments...