schemaorg-coda :: Example

eg-0265

From v29.4

JSON-LD

{
  "@context": "https://schema.org",
  "@type": "TouristTrip",
  "name": "Weekend in San Francisco",
  "description": "Short trip to San Francisco for first-time visitors.",
  "touristType": [
    "Urban tourism",
    "Nightlife tourism",
    "Shopping tourism"
  ],
  "offers": {
    "@type": "Offer",
    "name": "Trip proposed by MyTripco for tourists located in the USA.",
    "description": "The price includes two hotel nights in a 4 star hotel. Plane tickets not included.",
    "price": "500",
    "priceCurrency": "USD",
    "availabilityEnds": "2017-10-31",
    "url": "https://mytripco.com/trip/12345",
    "eligibleRegion": {
      "@type": "Country",
      "name": "USA"
    },
    "offeredBy": {
      "@type": "Organization",
      "name": "MyTripCo",
      "url": "https://mytripco.com"
    }
  },
  "itinerary": {
    "@type": "ItemList",
    "numberOfItems": 2,
    "itemListElement": [
      {
        "@type": ["ItemList","ListItem"],
        "name": "Saturday",
        "position": 1,
        "numberOfItems": 3,
        "itemListElement": [
          {
            "@type": "ListItem",
            "name": "Morning",
            "description": "Pedestrian visit of the Golden Gate Bridge.",
            "position": 1,
            "item": {
              "@type": [
                "TouristAttraction",
                "Bridge"
              ],
              "name": "Golden Gate Bridge",
              "description": "Very popular suspension bridge. The bridge is one of the most internationally recognized symbols of San Francisco, California, and the United States. It has been declared one of the Wonders of the Modern World by the American Society of Civil Engineers.",
              "url": "https://en.wikipedia.org/wiki/Golden_Gate_Bridge",
              "geo": {
                "@type":"GeoCoordinates",
                "latitude": 37.8199286,
                "longitude": -122.4804438
              }
            }
          },
          {
            "@type": "ListItem",
            "name": "Afternoon",
            "description": "Visit of the famous SF Chinatown.",
            "position": 2,
            "item": {
              "@type": [
                "TouristAttraction"
              ],
              "name": "Chinatown",
              "description": "Oldest Chinatown in North America and the largest Chinese enclave outside Asia. Visit its exotic shops, food markets, restaurants, and temples.",
              "address": "Stockton St and Clay St, San Francisco CA"
            }
          },
          {
            "@type": "ListItem",
            "name": "Night",
            "description": "Enjoy the SF nightlife",
            "position": 3,
            "item": {
              "@type": [
                "TouristAttraction"
              ],
              "name": "The Mission",
              "description": "The Mission District offers visitors an unparalleled menu of food and flavors as well as venues for fans of underground indie rock, funk, soul and jazz.",
              "address": "Mission St and 19th St, San Francisco CA"
            }
          }
        ]
      },
      {
        "@type": ["ItemList","ListItem"],
        "name": "Sunday",
        "position":2,
        "numberOfItems": 2,
        "itemListElement": [
          {
            "@type": "ListItem",
            "name": "Morning",
            "description":"Spend your morning shopping in one of the best spots in America.",
            "position": 1,
            "item": {
              "@type": [
                "TouristAttraction"
              ],
              "name": "Union Street Area",
              "description": "Union Street is the major commercial hub of San Francisco. You will find most fashion labels there.",
              "address":"Union St and Buchanan St, San Francisco CA"
            }
          },
          {
            "@type": "ListItem",
            "name": "Afternoon",
            "description": "Take your plane back home.",
            "position": 2,
            "item": {
              "@type": [
                "Airport"
              ],
              "name": "San Francisco Airport"
            }
          }
        ]
      }
    ]
  }
}

RDFa

<div>
  <div vocab="https://schema.org/" typeof="TouristTrip">
    <div property="name" content="Weekend in San Francisco"></div>
    <div property="description" content="Short trip to San Francisco for first-time visitors."></div>
    <div property="touristType" content="Nightlife tourism"></div>
    <div property="touristType" content="Urban tourism"></div>
    <div property="touristType" content="Shopping tourism"></div>
    <div rel="offers">
      <div typeof="Offer">
        <div property="name" content="Trip proposed by MyTripco for tourists located in the USA."></div>
        <div property="description" content="The price includes two hotel nights in a 4 star hotel. Plane tickets not included."></div>
        <div property="price" content="500"></div>
        <div property="priceCurrency" content="USD"></div>
        <div property="availabilityEnds" datatype="DateTime" content="2017-10-31"></div>
        <div rel="url" resource="https://mytripco.com/trip/12345"></div>
        <div rel="eligibleRegion">
          <div typeof="Country">
            <div property="name" content="USA"></div>
          </div>
        </div>
        <div rel="offeredBy">
          <div typeof="Organization">
            <div rel="url" resource="https://mytripco.com/"></div>
            <div property="name" content="MyTripCo"></div>
          </div>
        </div>
      </div>
    </div>
    <div rel="itinerary">
      <div typeof="ItemList">
        <div property="numberOfItems" datatype="xsd:integer" content="2"></div>

        <div rel="itemListElement">
          <div typeof="ListItem">
            <div rel="rdf:type" resource="https://schema.org/ItemList"></div>
            <div property="name" content="Saturday"></div>
            <div property="position" datatype="xsd:integer" content="1"></div>
            <div property="numberOfItems" datatype="xsd:integer" content="3"></div>

            <div rel="itemListElement">
              <div typeof="ListItem">
                <div property="name" content="Morning"></div>
                <div property="description" content="Pedestrian visit of the Golden Gate Bridge."></div>
                <div property="position" datatype="xsd:integer" content="1"></div>
                <div rel="item">
                  <div typeof="Bridge">
                    <div rel="rdf:type" resource="https://schema.org/TouristAttraction"></div>
                    <div property="name" content="Golden Gate Bridge"></div>
                    <div property="description" content="Very popular suspension bridge. The bridge is one of the most internationally recognized symbols of San Francisco, California, and the United States. It has been declared one of the Wonders of the Modern World by the American Society of Civil Engineers."></div>
                    <div rel="url" resource="https://en.wikipedia.org/wiki/Golden_Gate_Bridge"></div>
                    <div rel="geo">
                      <div typeof="GeoCoordinates">
                        <div property="latitude" datatype="xsd:double" content="37.8199286"></div>
                        <div property="longitude" datatype="xsd:double" content="-122.4804438"></div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div rel="itemListElement">
              <div typeof="ListItem">
                <div property="name" content="Afternoon"></div>
                <div property="description" content="Visit of the famous SF Chinatown."></div>
                <div property="position" datatype="xsd:integer" content="2"></div>
                <div rel="item">
                  <div typeof="TouristAttraction">
                    <div property="name" content="Chinatown"></div>
                    <div property="address" content="Stockton St and Clay St, San Francisco CA"></div>
                    <div property="description" content="Oldest Chinatown in North America and the largest Chinese enclave outside Asia. Visit its exotic shops, food markets, restaurants, and temples."></div>
                  </div>
                </div>
              </div>
            </div>
            <div rel="itemListElement">
              <div typeof="ListItem">
                <div property="name" content="Night"></div>
                <div property="description" content="Enjoy the SF nightlife"></div>
                <div property="position" datatype="xsd:integer" content="3"></div>
                <div rel="item">
                  <div typeof="TouristAttraction">
                    <div property="name" content="The Mission"></div>
                    <div property="description" content="The Mission District offers visitors an unparalleled menu of food and flavors as well as venues for fans of underground indie rock, funk, soul and jazz."></div>
                    <div property="address" content="Mission St and 19th St, San Francisco CA"></div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div rel="itemListElement">
          <div typeof="ListItem">
            <div rel="rdf:type" resource="https://schema.org/ItemList"></div>
            <div property="name" content="Sunday"></div>
            <div property="position" datatype="xsd:integer" content="2"></div>
            <div property="numberOfItems" datatype="xsd:integer" content="2"></div>

            <div rel="itemListElement">
              <div typeof="ListItem">
                <div property="name" content="Morning"></div>
                <div property="description" content="Spend your morning shopping in one of the best spots in America."></div>
                <div property="position" datatype="xsd:integer" content="1"></div>
                <div rel="item">
                  <div typeof="TouristAttraction">
                    <div property="description" content="Union Street is the major commercial hub of San Francisco. You will find most fashion labels there."></div>
                    <div property="address" content="Union St and Buchanan St, San Francisco CA"></div>
                    <div property="name" content="Union Street Area"></div>
                  </div>
                </div>
              </div>
            </div>
            <div rel="itemListElement">
              <div typeof="ListItem">
                <div property="name" content="Afternoon"></div>
                <div property="description" content="Take your plane back home."></div>
                <div rel="item">
                  <div typeof="Airport">
                    <div property="name" content="San Francisco Airport"></div>
                  </div>
                </div>
                <div property="position" datatype="xsd:integer" content="2"></div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

Microdata

<div>
  <div itemtype="https://schema.org/TouristTrip" itemscope>
    <meta itemprop="name" content="Weekend in San Francisco" />
    <meta itemprop="description" content="Short trip to San Francisco for first-time visitors." />
    <meta itemprop="touristType" content="Urban tourism" />
    <meta itemprop="touristType" content="Nightlife tourism" />
    <meta itemprop="touristType" content="Shopping tourism" />
    <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope>
      <meta itemprop="name" content="Trip proposed by MyTripco for tourists located in the USA." />
      <meta itemprop="description" content="The price includes two hotel nights in a 4 star hotel. Plane tickets not included." />
      <meta itemprop="price" content="500" />
      <meta itemprop="priceCurrency" content="USD" />
      <meta itemprop="availabilityEnds" content="2017-10-31" />
      <link itemprop="url" href="https://mytripco.com/trip/12345" />
      <div itemprop="eligibleRegion" itemtype="https://schema.org/Country" itemscope>
        <meta itemprop="name" content="USA" />
      </div>
      <div itemprop="offeredBy" itemtype="https://schema.org/Organization" itemscope>
        <meta itemprop="name" content="MyTripCo" />
        <link itemprop="url" href="https://mytripco.com/" />
      </div>
    </div>
    <div itemprop="itinerary" itemtype="https://schema.org/ItemList" itemscope>
      <meta itemprop="numberOfItems" content="2" />
      <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
        <link itemprop="additionalType" href="https://schema.org/ItemList" />
        <meta itemprop="name" content="Saturday" />
        <meta itemprop="position" content="1" />
        <meta itemprop="numberOfItems" content="3" />
          <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
            <meta itemprop="name" content="Morning" />
            <meta itemprop="description" content="Pedestrian visit of the Golden Gate Bridge." />
            <meta itemprop="position" content="1" />
              <div itemprop="item" itemtype="https://schema.org/Bridge" itemscope>
                <link itemprop="additionalType" href="https://schema.org/TouristAttraction" />
                <meta itemprop="name" content="Golden Gate Bridge" />
                <meta itemprop="description" content="Very popular suspension bridge. The bridge is one of the most internationally recognized symbols of San Francisco, California, and the United States. It has been declared one of the Wonders of the Modern World by the American Society of Civil Engineers." />
                <link itemprop="url" href="https://en.wikipedia.org/wiki/Golden_Gate_Bridge" />
                  <div itemtype="https://schema.org/GeoCoordinates" itemscope>
                    <meta itemprop="latitude" content="37.8199286" />
                    <meta itemprop="longitude" content="-122.4804438" />
                  </div>
              </div>
          </div>
          <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
            <meta itemprop="name" content="Afternoon" />
            <meta itemprop="description" content="Visit of the famous SF Chinatown." />
            <meta itemprop="position" content="2" />
              <div itemprop="item" itemtype="https://schema.org/TouristAttraction" itemscope>
                <meta itemprop="name" content="Chinatown" />
                <meta itemprop="description" content="Oldest Chinatown in North America and the largest Chinese enclave outside Asia. Visit its exotic shops, food markets, restaurants, and temples." />
                <meta itemprop="address" content="Stockton St and Clay St, San Francisco CA" />
              </div>
          </div>
          <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
            <meta itemprop="name" content="Night" />
            <meta itemprop="description" content="Enjoy the SF nightlife" />
            <meta itemprop="position" content="3" />
              <div itemprop="item" itemtype="https://schema.org/TouristAttraction" itemscope>
                <meta itemprop="name" content="The Mission" />
                <meta itemprop="description" content="The Mission District offers visitors an unparalleled menu of food and flavors as well as venues for fans of underground indie rock, funk, soul and jazz." />
                <meta itemprop="address" content="Mission St and 19th St, San Francisco CA" />
              </div>
          </div>
      </div>
      <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
        <link itemprop="additionalType" href="https://schema.org/ItemList" />
        <meta itemprop="name" content="Sunday" />
        <meta itemprop="position" content="2" />
        <meta itemprop="numberOfItems" content="2" />
          <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
            <meta itemprop="name" content="Morning" />
            <meta itemprop="description" content="Spend your morning shopping in one of the best spots in America." />
            <meta itemprop="position" content="1" />
              <div itemprop="item" itemtype="https://schema.org/TouristAttraction" itemscope>
                <meta itemprop="name" content="Union Street Area" />
                <meta itemprop="description" content="Union Street is the major commercial hub of San Francisco. You will find most fashion labels there." />
                <meta itemprop="address" content="Union St and Buchanan St, San Francisco CA" />
              </div>
          </div>
          <div itemprop="itemListElement" itemtype="https://schema.org/ListItem" itemscope>
            <meta itemprop="name" content="Afternoon" />
            <meta itemprop="description" content="Take your plane back home." />
            <meta itemprop="position" content="2" />
              <div itemprop="item" itemtype="https://schema.org/Airport" itemscope>
                <meta itemprop="name" content="San Francisco Airport" />
              </div>
          </div>
      </div>
    </div>
  </div>
</div>

Pre-Markup

<div class="tourist-trip-wrapper">
  <h1>
    Weekend in San Francisco
  </h1>
  <p>
    Short trip to San Francisco for first-time visitors.
  </p>
  <ul class="tourist-audience-wrapper">
    <li>Urban tourism</li>
    <li>Nightlife tourism</li>
    <li>Shopping tourism</li>
  </ul>
  <div class="offer-wrapper">
    <h2>
      Trip proposed by MyTripco for tourists located in the USA.
    </h2>
    <p>
      The price includes two hotel nights in a 4 star hotel. Plane tickets not included.
    </p>
    <p>
      Price: 500 USD
      Available until: Octobre 31, 2017
    </p>
    <a href="https://mytripco.com/trip/12345">
      Booking Website
    </a>
    <a href="https://mytripco.com">
      MyTripco Website
    </a>
  </div>
  <div class="itinerary-wrapper">
    <div class="item-list-wrapper">
      <h2>
        Saturday
      </h2>
      <div>
        <h3>
          Morning
        </h3>
        <p>
          Pedestrian visit of the Golden Gate Bridge.
        </p>
        <div class="tourist-attraction-wrapper">
          <h4>
            Golden Gate Bridge
          </h4>
          <p>
            Very popular suspension bridge. The bridge is one of the most internationally recognized symbols of San Francisco, California, and the United States. It has been declared one of the Wonders of the Modern World by the American Society of Civil Engineers.
          </p>
          <a href="https://en.wikipedia.org/wiki/Golden_Gate_Bridge">
            Wikipedia Article
          </a>
          <p>
            Location: lat 37.8199286, lon -122.4804438
          </p>
        </div>
      </div>
      <div>
        <h3>
          Afternoon
        </h3>
        <p>
          Visit of the famous SF Chinatown.
        </p>
        <div class="tourist-attraction-wrapper">
          <h4>
            Chinatown
          </h4>
          <p>
            Oldest Chinatown in North America and the largest Chinese enclave outside Asia. Visit its exotic shops, food markets, restaurants, and temples.
          </p>
          <p>
            Address: Stockton St and Clay St, San Francisco CA
          </p>
        </div>
      </div>
      <div>
        <h3>
          Night
        </h3>
        <p>
          Enjoy the SF nightlife.
        </p>
        <div class="tourist-attraction-wrapper">
          <h4>
            The Mission
          </h4>
          <p>
            The Mission District offers visitors an unparalleled menu of food and flavors as well as venues for fans of underground indie rock, funk, soul and jazz.
          </p>
          <p>
            Address: Mission St and 19th St, San Francisco CA
          </p>
        </div>
      </div>
    </div>
    <div class="item-list-wrapper">
      <h2>
        Sunday
      </h2>
      <div>
        <h3>
          Morning
        </h3>
        <p>
          Spend your morning shopping in one of the best spots in America.
        </p>
        <div class="tourist-attraction-wrapper">
          <h4>
            Union Street Area
          </h4>
          <p>
            Union Street is the major commercial hub of San Francisco. You will find most fashion labels there.
          </p>
          <p>
            Address: Union St and Buchanan St, San Francisco CA
          </p>
        </div>
      </div>
      <div>
        <h3>
          Afternoon
        </h3>
        <p>
          Take your plane back home.
        </p>
        <p>
          Location: San Francisco Airport.
        </p>
      </div>
    </div>
  </div>
</div>