CARVIEW |
Select Language
HTTP/2 200
access-control-allow-credentials: true
access-control-allow-headers: Accept
access-control-allow-origin: *
access-control-allow-methods: GET
date: Thu, 09 Oct 2025 13:59:54 GMT
expires: Thu, 09 Oct 2025 14:09:54 GMT
cache-control: public, max-age=600
etag: "XYkB7A"
x-cloud-trace-context: 16aa122346c420a003afadbfdf7e36f5
content-type: text/html
content-encoding: gzip
server: Google Frontend
alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
additionalType - Schema.org Property
Subproperty of:
Note: You are viewing the development
version of Schema.org.
See how we work for more details.
additionalType
A Schema.org Property
- Canonical URL: https://schema.org/additionalType
- Check for open issues.
An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. Typically the value is a URI-identified RDF class, and in this case corresponds to the
use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org style guide.
Subproperty of:
- rdf:type
Used on these types
Examples
Example 1
Copied
Example notes or example HTML without markup.
<!-- Uses both the "Book" and "Product" item types to support Offer relationships --> <div> <h3>Le concerto</h3> <div> Bibliographic Details <table> <tr> <th>Main Author: </th> <td>Ferchault, Guy</td> </tr> </table> </div> </div> <div> Holdings details from Anytown City Library <table> <!-- Example of a copy available for loan --> <tr> <th>Copy </th> <td>Available <div>Barcode: <span>CONC91000937</span></div> <div>Call number: <span>780 R2</span></div> <div>Library: <span>Anytown City Library</span></div> </td> </tr> <table> </div>
Example encoded as Microdata embedded in HTML.
<!-- Uses both the "Book" and "Product" item types to support Offer relationships --> <div itemscope itemtype="https://schema.org/Book" itemid="#record"> <link itemprop="additionalType" href="https://schema.org/Product"/> <h3 itemprop="name">Le concerto</h3> <div> Bibliographic Details <table> <tr> <th>Main Author: </th> <td itemprop="author">Ferchault, Guy</td> </tr> </table> </div> </div> <div> Holdings details from Anytown City Library <table> <!-- Example of a copy available for loan --> <tr itemscope itemtype="https://schema.org/Offer"> <th>Copy </th> <td>Available <link itemprop="availability" href="https://schema.org/InStock"> <div>Barcode: <span itemprop="serialNumber">CONC91000937</span></div> <div>Call number: <span itemprop="sku">780 R2</span></div> <div>Library: <span itemprop="offeredBy" itemscope itemtype="https://schema.org/Library" itemid="https://library.anytown.gov.uk" >Anytown City Library</span></div> <link itemprop="businessFunction" href="https://purl.org/goodrelations/v1#LeaseOut"> <link itemprop="itemOffered" href="#record"> </td> </tr> </table> </div>
Example encoded as RDFa embedded in HTML.
<!-- Uses both the "Book" and "Product" item types to support Offer relationships --> <div vocab="https://schema.org/" resource="#record" typeof="Book Product"> <h3 property="name"> Le concerto </h3> <div> Bibliographic Details <table> <tr> <th> Main Author: </th> <td property="author"> Ferchault, Guy </td> </tr> </table> </div> </div> <div> Holdings details from Anytown City Library <table vocab="https://schema.org/"> <!-- Example of a copy available for loan --> <tr typeof="Offer"> <th> Copy </th> <td> Available <div> Barcode: <span property="serialNumber">CONC91000937</span> </div> <div> Call number: <span property="sku">780 R2</span> </div> <div> Library: <span property="offeredBy" typeof="Library" resource="https://library.anytown.gov.uk">Anytown City Library</span> </div> </td> </tr> </table> </div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json"> { "@context": "https://schema.org/", "@id": "#record", "@type": "Book", "additionalType": "Product", "name": "Le concerto", "author": "Ferchault, Guy", "offers":{ "@type": "Offer", "availability": "https://schema.org/InStock", "serialNumber": "CONC91000937", "sku": "780 R2", "offeredBy": { "@type": "Library", "@id": "https://library.anytown.gov.uk", "name": "Anytown City Library" }, "businessFunction": "https://purl.org/goodrelations/v1#LeaseOut", "itemOffered": "#record" } } </script>
Structured representation of the JSON-LD example.
{
"@context": "https://schema.org/",
"@id": "#record",
"@type": "Book",
"additionalType": "Product",
"name": "Le concerto",
"author": "Ferchault, Guy",
"offers":{
"@type": "Offer",
"availability": "https://schema.org/InStock",
"serialNumber": "CONC91000937",
"sku": "780 R2",
"offeredBy": {
"@type": "Library",
"@id": "https://library.anytown.gov.uk",
"name": "Anytown City Library"
},
"businessFunction": "https://purl.org/goodrelations/v1#LeaseOut",
"itemOffered": "#record"
}
}
•
Schema.org
•
V29.3
|
2025-09-04