Note: You are viewing the development version of Schema.org. See how we work for more details.

paymentAccepted

A Schema.org Property
Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. <h1>Disneyland Paris</h1>
  2. <div>It's an amusement park in Marne-la-Vallée, near Paris, in France.</div>
  3. <div>Hours: Mo-Fr 10am-7pm Sa 10am-22pm Su 10am-21pm</div>
  4. <div>Entrance: with ticket</div>
  5. <div>Currency accepted: Euro</div>
  6. <div>Payment accepted: Cash, Credit Card</div>
  7. <div>Website:
  8.         <a href="http://www.disneylandparis.it/">www.disneylandparis.it</a>
  9. </div>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/AmusementPark https://schema.org/TouristAttraction">
  2.         <h1><span itemprop="name">Disneyland Paris</span></h1>
  3.         <div>
  4.                 <span itemprop="description">It's an amusement park in Marne-la-Vallée, near Paris, in France and is the most visited theme park in all of France and Europe.</span>
  5.         </div>
  6.         <div>Hours: Mo-Fr 10am-7pm Sa 10am-22pm Su 10am-21pm
  7.                 <meta itemprop="openingHours" content="Mo-Fr 10:00-19:00"/>
  8.                 <meta itemprop="openingHours" content="Sa 10:00-22:00"/>
  9.                 <meta itemprop="openingHours" content="Su 10:00-21:00"/>
  10.         </div>
  11.         <div>
  12.                 <meta itemprop="isAccessibleForFree" content="false"/>Entrance: with ticket
  13.         </div>
  14.         <div>
  15.                 <meta itemprop="currenciesAccepted" content="EUR"/>Currency accepted: Euro
  16.         </div>
  17.         <div>
  18.                 <meta itemprop="paymentAccepted" content="Cash, Credit Card"/>Payment accepted: Cash, Credit Card
  19.         </div>
  20.         <div>Website:
  21.                 <a href="http://www.disneylandparis.it/" itemprop="url">www.disneylandparis.it</a>
  22.         </div>
  23. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="TouristAttraction AmusementPark">
  2.         <h1><span property="name">Disneyland Paris</span></h1>
  3.         <div>
  4.                 <span property="description">It's an amusement park in Marne-la-Vallée, near Paris, in France and is the most visited theme park in all of France and Europe.</span>
  5.         </div>
  6.         <div>Hours: Mo-Fr 10am-7pm Sa 10am-22pm Su 10am-21pm
  7.                 <meta property="openingHours" content="Mo-Fr 10:00-19:00"/>
  8.                 <meta property="openingHours" content="Sa 10:00-22:00"/>
  9.                 <meta property="openingHours" content="Su 10:00-21:00"/>
  10.         </div>
  11.         <div>
  12.                 <meta property="isAccessibleForFree" content="false"/>Entrance: with ticket
  13.         </div>
  14.         <div>
  15.                 <meta property="currenciesAccepted" content="EUR"/>Currency accepted: Euro
  16.         </div>
  17.         <div>
  18.                 <meta property="paymentAccepted" content="Cash, Credit Card"/>Payment accepted: Cash, Credit Card
  19.         </div>
  20.         <div>Website:
  21.                 <a href="http://www.disneylandparis.it/" property="url">www.disneylandparis.it</a>
  22.         </div>
  23. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.         "@context": "https://schema.org",
  4.         "@type": ["TouristAttraction", "AmusementPark"],
  5.         "name": "Disneyland Paris",
  6.         "description": "It's an amusement park in Marne-la-Vallée, near Paris, in France and is the most visited theme park in all of France and Europe.",
  7.         "openingHours":["Mo-Fr 10:00-19:00", "Sa 10:00-22:00", "Su 10:00-21:00"],
  8.         "isAccessibleForFree": false,
  9.         "currenciesAccepted": "EUR",
  10.         "paymentAccepted":"Cash, Credit Card",
  11.         "url":"http://www.disneylandparis.it/"
  12. }
  13. </script>
Structured representation of the JSON-LD example.