Skip to content

Commit

Permalink
Update index.rst
Browse files Browse the repository at this point in the history
fix bug in example JSON-LD context
  • Loading branch information
jsimonclark committed Apr 15, 2024
1 parent e7ec5cd commit 80089dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ Welcome to the **Battery Interface Ontology (BattINFO)**, a semantic resource wi
:linenos:
{
"@context": "https://raw.githubusercontent.com/emmo-repo/domain-battery/master/context.json",
"@context": "https://w3id.org/emmo/domain/battery/context",
"@type": "CR2032",
"schema:name": "My CR2032 Coin Cell",
"schema:manufacturer": {
"@id": "https://www.wikidata.org/wiki/Q3041255",
"schema:name": "SINTEF"
},
"hasProperty": {
"@type": ["NominalCapacity", "ConventionalProperty"],
"@type": ["RatedCapacity", "ConventionalProperty"],
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 230
Expand All @@ -44,7 +44,7 @@ Welcome to the **Battery Interface Ontology (BattINFO)**, a semantic resource wi
.. raw:: html

<div style="position: relative; padding-top: 56.25%; height: 0;">
<iframe src="https://json-ld.org/playground/#startTab=tab-table&json-ld=%7B%22%40context%22%3A%22https%3A%2F%2Fraw.githubusercontent.com%2Femmo-repo%2Fdomain-battery%2Fmaster%2Fcontext.json%22%2C%22%40type%22%3A%22CR2032%22%2C%22schema%3Aname%22%3A%22My%20CR2032%20Coin%20Cell%22%2C%22schema%3Amanufacturer%22%3A%7B%22%40id%22%3A%22https%3A%2F%2Fwww.wikidata.org%2Fwiki%2FQ3041255%22%2C%22schema%3Aname%22%3A%22SINTEF%22%7D%2C%22hasProperty%22%3A%7B%22%40type%22%3A%5B%22NominalCapacity%22%2C%22ConventionalProperty%22%5D%2C%22hasNumericalPart%22%3A%7B%22%40type%22%3A%22Real%22%2C%22hasNumericalValue%22%3A230%7D%2C%22hasMeasurementUnit%22%3A%22emmo%3AMilliAmpereHour%22%7D%7D" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" frameborder="0" allowfullscreen></iframe>
<iframe src="https://json-ld.org/playground/#startTab=tab-canonized&json-ld=%7B%22%40context%22%3A%22https%3A%2F%2Fw3id.org%2Femmo%2Fdomain%2Fbattery%2Fcontext%22%2C%22%40type%22%3A%22CR2032%22%2C%22schema%3Aname%22%3A%22My%20CR2032%20Coin%20Cell%22%2C%22schema%3Amanufacturer%22%3A%7B%22%40id%22%3A%22https%3A%2F%2Fwww.wikidata.org%2Fwiki%2FQ3041255%22%2C%22schema%3Aname%22%3A%22SINTEF%22%7D%2C%22hasProperty%22%3A%7B%22%40type%22%3A%5B%22RatedCapacity%22%2C%22ConventionalProperty%22%5D%2C%22hasNumericalPart%22%3A%7B%22%40type%22%3A%22Real%22%2C%22hasNumericalValue%22%3A230%7D%2C%22hasMeasurementUnit%22%3A%22emmo%3AMilliAmpereHour%22%7D%7D" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" frameborder="0" allowfullscreen></iframe>
</div>


Expand Down

0 comments on commit 80089dd

Please sign in to comment.