diff --git a/_sources/examples.rst.txt b/_sources/examples.rst.txt index b150423..b1d3659 100644 --- a/_sources/examples.rst.txt +++ b/_sources/examples.rst.txt @@ -1,10 +1,58 @@ Examples ======== +Electrode +--------- + +.. code-block:: json + :linenos: + + { + "@context": "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/master/context.json", + "@type": ["Electrode", "Foil"], + "hasActiveMaterial": { + "@type": "Zinc" + }, + "hasProperty": [ + { + "@type": ["SpecificCapacity", "MeasuredProperty"], + "hasNumericalPart": { + "@type": "Real", + "hasNumericalValue": 800 + }, + "hasMeasurementUnit": "emmo:MilliAmpereHourPerGram" + }, + { + "@type": ["Thickness", "ConventionalProperty"], + "hasNumericalPart": { + "@type": "Real", + "hasNumericalValue": 250 + }, + "hasMeasurementUnit": "emmo:MicroMetre" + }, + { + "@type": ["Diameter", "MeasuredProperty"], + "hasNumericalPart": { + "@type": "Real", + "hasNumericalValue": 2 + }, + "hasMeasurementUnit": "emmo:CentiMetre" + }, + { + "@type": ["Mass", "MeasuredProperty"], + "hasNumericalPart": { + "@type": "Real", + "hasNumericalValue": 2.5 + }, + "hasMeasurementUnit": "emmo:Gram" + } + ] + } + .. raw:: html
- +
diff --git a/_sources/resources.rst.txt b/_sources/resources.rst.txt index f4f5e0c..ac248e3 100644 --- a/_sources/resources.rst.txt +++ b/_sources/resources.rst.txt @@ -2,18 +2,18 @@ Resources ========= Best Practices -~~~~~~~~~~~~~~ -`Data on the Web Best Practices `_ -`Best Practices for Publishing Linked Data `_ +-------------- +- `Data on the Web Best Practices `_ +- `Best Practices for Publishing Linked Data `_ Tabular Data -~~~~~~~~~~~~ -`Model for Tabular Data and Metadata on the Web `_ -`Metadata Vocabulary for Tabular Data `_ +------------ +- `Model for Tabular Data and Metadata on the Web `_ +- `Metadata Vocabulary for Tabular Data `_ RDF Vocabularies -~~~~~~~~~~~~~~~~ -`RDF Schema `_ -`Simple Knowledge Organization System (SKOS) `_ -`Dublin Core `_ -`Schema.org `_ +---------------- +- `RDF Schema `_ +- `Simple Knowledge Organization System (SKOS) `_ +- `Dublin Core `_ +- `Schema.org `_ diff --git a/examples.html b/examples.html index a53cdaf..217e286 100644 --- a/examples.html +++ b/examples.html @@ -386,9 +386,55 @@

Examples#

+
+

Electrode#

+
 1{
+ 2   "@context": "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/master/context.json",
+ 3   "@type": ["Electrode", "Foil"],
+ 4   "hasActiveMaterial": {
+ 5      "@type": "Zinc"
+ 6   },
+ 7   "hasProperty": [
+ 8      {
+ 9         "@type": ["SpecificCapacity", "MeasuredProperty"],
+10         "hasNumericalPart": {
+11               "@type": "Real",
+12               "hasNumericalValue": 800
+13         },
+14         "hasMeasurementUnit": "emmo:MilliAmpereHourPerGram"
+15      },
+16      {
+17         "@type": ["Thickness", "ConventionalProperty"],
+18         "hasNumericalPart": {
+19               "@type": "Real",
+20               "hasNumericalValue": 250
+21         },
+22         "hasMeasurementUnit": "emmo:MicroMetre"
+23      },
+24      {
+25         "@type": ["Diameter", "MeasuredProperty"],
+26         "hasNumericalPart": {
+27               "@type": "Real",
+28               "hasNumericalValue": 2
+29         },
+30         "hasMeasurementUnit": "emmo:CentiMetre"
+31      },
+32      {
+33         "@type": ["Mass", "MeasuredProperty"],
+34         "hasNumericalPart": {
+35               "@type": "Real",
+36               "hasNumericalValue": 2.5
+37         },
+38         "hasMeasurementUnit": "emmo:Gram"
+39      }
+40   ]
+41}
+
+
- +
+
@@ -431,6 +477,16 @@

Examples