Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save James-Hudson3010/227ffb77b853a29556be5b5c3a67c309 to your computer and use it in GitHub Desktop.
Save James-Hudson3010/227ffb77b853a29556be5b5c3a67c309 to your computer and use it in GitHub Desktop.
sample json-ld instance of schema
{
"@context": {
"mne": "http://example.com/",
"itemIdentifier": "mne:itemIdentifier",
"iteration": "mne:iteration",
"item": "mne:item",
"containerVersion": "mne:containerVersion",
},
"@id": "the_container_identifier",
"@type": "mne:CONTAINER",
"item": {
"@type": "mne:Item",
"itemname": "the_item_name",
"width": "500",
"height": "200"
},
"itemname": "the container name",
"containerVersion": {
"@type": "mne:CONTAINERVersion",
"itemIdentifier": "4asdf2",
"iteration": "42"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment