Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Last active March 26, 2024 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrickcoombe/82ed96bf5a655f6935498f8316112695 to your computer and use it in GitHub Desktop.
Save patrickcoombe/82ed96bf5a655f6935498f8316112695 to your computer and use it in GitHub Desktop.
3D Model JSON-LD EXAMPLE
{
"@context": "https://schema.org/",
"@type": "Product",
"sku": "1234-5678",
"image": "https://www.example.com/sofa.jpg",
"name": "Water heater",
"description": "White 3-Seat Sofa",
"gtin14": "12345678901231",
"mpn": "S1234W3",
"brand": {
"@type": "Brand",
"name": "ExampleSofaBrand"
},
"subjectOf": {
"@type": "3DModel",
"encoding": {
"@type": "MediaObject",
"contentUrl": "https://example.com/sofa.gltf"
}
},
"offers": {
"@type": "Offer",
"url": "https://www.example.com/whitechaiselongue",
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock",
"price": 1299.00,
"priceCurrency": "USD"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment