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

faxNumber

A Schema.org Property
The fax number.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. Google.Org

  2. Contact Details:
  3. Main address: 38 avenue de l'Opéra, F-75002 Paris, France
  4.  Tel: ( 33 1) 42 68 53 00, Fax: ( 33 1) 42 68 53 01
  5. E-mail: secretariat (at) google.org
  6. URL: <a href="http://www.google.org">www.google.org</a>
  7. SIRET Code: 443 061 841 00039
  8. VAT Number: FR64443061841

  9. Members:
  10. - National Scientific Members in 100 countries and territories: Country1, Country2, ...
  11. - Scientific Union Members, 30 organizations listed in this Yearbook: Member 1, Member 2

  12. History:
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Organization">
  2.   <span itemprop="name">Google.org (GOOG)</span>

  3. Contact Details:
  4.   <div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
  5.     Main address:
  6.       <span itemprop="streetAddress">38 avenue de l'Opéra</span>
  7.       <span itemprop="postalCode">F-75002</span>
  8.       <span itemprop="addressLocality">Paris, France</span>
  9.     ,
  10.   </div>
  11.     Tel:<span itemprop="telephone">( 33 1) 42 68 53 00 </span>,
  12.     Fax:<span itemprop="faxNumber">( 33 1) 42 68 53 01 </span>,
  13.     E-mail: <span itemprop="email">secretariat(at)google.org</span>
  14.     SIRET Code: 443 061 841 00039<meta itemprop="iso6523Code" content="0009:44306184100039" />
  15.     VAT Number: FR64443061841<meta itemprop="iso6523Code" content="9957:FR64443061841" />

  16. Members:
  17. - National Scientific Members in 100 countries and territories: Country1, Country2, ...
  18. - Scientific Union Members, 30 organizations listed in this Yearbook:
  19. List of Alumni:
  20.  <span itemprop="alumni" itemscope itemtype="https://schema.org/Person">
  21.    <span itemprop="name">Jack Dan</span>
  22.  </span>,
  23.  <span itemprop="alumni" itemscope itemtype="https://schema.org/Person">
  24.    <span itemprop="name">John Smith</span>
  25.  </span>,

  26. History:
  27. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Organization">
  2.   <span property="name">Google.org (GOOG)</span>

  3. Contact Details:
  4.   <div property="address" typeof="PostalAddress">
  5.     Main address:
  6.       <span property="streetAddress">38 avenue de l'Opera</span>
  7.       <span property="postalCode">F-75002</span>
  8.       <span property="addressLocality">Paris, France</span>
  9.     ,
  10.   </div>
  11.     Tel:<span property="telephone">( 33 1) 42 68 53 00 </span>,
  12.     Fax:<span property="faxNumber">( 33 1) 42 68 53 01 </span>,
  13.     E-mail: <span property="email">secretariat(at)google.org</span>
  14.     SIRET Code: 443 061 841 00039<meta itemprop="iso6523Code" content="0009:44306184100039" />
  15.     VAT Number: FR64443061841<meta itemprop="iso6523Code" content="9957:FR64443061841" />

  16. Members:
  17. - National Scientific Members in 100 countries and territories: Country1, Country2, ...
  18. - Scientific Union Members, 30 organizations listed in this Yearbook:
  19. List of Alumni:
  20.  <span property="alumni"  typeof="Person">
  21.    <span property="name">Jack Dan</span>
  22.  </span>,
  23.  <span property="alumni"  typeof="Person">
  24.    <span property="name">John Smith</span>
  25.  </span>
  26. History:
  27. </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": "Organization",
  5.   "address": {
  6.     "@type": "PostalAddress",
  7.     "addressLocality": "Paris, France",
  8.     "postalCode": "F-75002",
  9.     "streetAddress": "38 avenue de l'Opéra"
  10.   },
  11.   "email": "secretariat(at)google.org",
  12.   "faxNumber": "+33142685301",
  13.   "iso6523Code": "0009:44306184100039",
  14.   "iso6523Code": "9957:FR64443061841",
  15.   "member": [
  16.     {
  17.       "@type": "Organization"
  18.     },
  19.     {
  20.       "@type": "Organization"
  21.     }
  22.   ],
  23.   "alumni": [
  24.     {
  25.       "@type": "Person",
  26.       "name": "Jack Dan"
  27.     },
  28.     {
  29.       "@type": "Person",
  30.       "name": "John Smith"
  31.     }
  32.   ],
  33.   "name": "Google.org (GOOG)",
  34.   "telephone": "+33 1 42 68 53 00"
  35. }
  36. </script>
Structured representation of the JSON-LD example.