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
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}
+
Data on the Web Best Practices -Best Practices for Publishing Linked Data
+Model for Tabular Data and Metadata on the Web -Metadata Vocabulary for Tabular Data
+RDF Schema -Simple Knowledge Organization System (SKOS) -Dublin Core -Schema.org
+