diff --git a/_sources/index.rst.txt b/_sources/index.rst.txt index aee8a43..7f6517b 100644 --- a/_sources/index.rst.txt +++ b/_sources/index.rst.txt @@ -22,16 +22,20 @@ Welcome to the **EMMO Battery Domain Ontology**, a semantic resource with essent :linenos: { - "@context": "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/master/context.json", - "@type": "ElectrochemicalCell", - "hasNegativeElectrode": { - "@type": "ZincElectrode" + "@context": "https://raw.githubusercontent.com/emmo-repo/domain-battery/master/context.json", + "@type": "CR2032", + "schema:name": "My CR2032 Coin Cell", + "schema:manufacturer": { + "@id": "https://www.wikidata.org/wiki/Q3041255", + "schema:name": "SINTEF" }, - "hasPositiveElectrode": { - "@type": "ManganeseDioxideElectrode" - }, - "hasElectrolyte": { - "@type": "AlkalineElectrolyte" + "hasProperty": { + "@type": ["NominalCapacity", "ConventionalProperty"], + "hasNumericalPart": { + "@type": "Real", + "hasNumericalValue": 230 + }, + "hasMeasurementUnit": "emmo:MilliAmpereHour" } } @@ -40,7 +44,7 @@ Welcome to the **EMMO Battery Domain Ontology**, a semantic resource with essent .. raw:: html
1{
- 2 "@context": "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/master/context.json",
- 3 "@type": "ElectrochemicalCell",
- 4 "hasNegativeElectrode": {
- 5 "@type": "ZincElectrode"
- 6 },
- 7 "hasPositiveElectrode": {
- 8 "@type": "ManganeseDioxideElectrode"
- 9 },
-10 "hasElectrolyte": {
-11 "@type": "AlkalineElectrolyte"
-12 }
-13}
+ 2 "@context": "https://raw.githubusercontent.com/emmo-repo/domain-battery/master/context.json",
+ 3 "@type": "CR2032",
+ 4 "schema:name": "My CR2032 Coin Cell",
+ 5 "schema:manufacturer": {
+ 6 "@id": "https://www.wikidata.org/wiki/Q3041255",
+ 7 "schema:name": "SINTEF"
+ 8 },
+ 9 "hasProperty": {
+10 "@type": ["NominalCapacity", "ConventionalProperty"],
+11 "hasNumericalPart": {
+12 "@type": "Real",
+13 "hasNumericalValue": 230
+14 },
+15 "hasMeasurementUnit": "emmo:MilliAmpereHour"
+16 }
+17}