XooCode(){

BoardingPolicyType

BoardingPolicyType is a 2-value Enumeration on Flight.boardingPolicy. Values: GroupBoardingPolicy (groups boarded in order), ZoneBoardingPolicy (boarding by seat zone/number).

Full example of schema.org/BoardingPolicyType json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/BoardingPolicyType
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Flight",
  "flightNumber": "SK1741",
  "boardingPolicy": "https://schema.org/ZoneBoardingPolicy"
}
</script>

Minimal valid version

The smallest markup that still produces a valid BoardingPolicyType 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.

schema.org/BoardingPolicyType (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Flight",
  "boardingPolicy": "https://schema.org/ZoneBoardingPolicy"
}
</script>

Google rich results this unlocks

BoardingPolicyType is a structural type. It does not produce a rich result on its own.

Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). BoardingPolicyType becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common BoardingPolicyType 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.

  1. 01

    boardingPolicy as free text

    Wrong
    "boardingPolicy": "zones"
    Right
    "boardingPolicy": "https://schema.org/ZoneBoardingPolicy"

    Two-URI closed set.

Also mentioned in 1 other example

BoardingPolicyType also appears in Flight. See the full BoardingPolicyType schema page for every reference.

About the example data

"ZoneBoardingPolicy" on the Copenhagen-to-Basel flight in the Dunmore travel ledger.

Comments

Loading comments...

Leave a comment