diff --git a/jq/pod2nerdm.jq b/jq/pod2nerdm.jq index 9116cfb..1d62028 100644 --- a/jq/pod2nerdm.jq +++ b/jq/pod2nerdm.jq @@ -21,11 +21,11 @@ include "urldecode"; # the base NERDm JSON schema namespace # -def nerdm_schema: "https://data.nist.gov/od/dm/nerdm-schema/v0.2#"; +def nerdm_schema: "https://data.nist.gov/od/dm/nerdm-schema/v0.3#"; # the base NERDm JSON schema namespace # -def nerdm_pub_schema: "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#"; +def nerdm_pub_schema: "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#"; # the NERDm context location # @@ -39,6 +39,27 @@ def dciteRefType: nerdm_schema + "/definitions/DCiteReference"; # def resid: if $id then $id else null end; +# the base URL for the PDR-generated landing page +# +def pdrLandingPageBaseURL: "https://data.nist.gov/od/id/"; + +# extract the local identifier from the EDI-ID. If the input is an ARK identifier, the scheme and +# prefix are dropped +# +# Input: string +# Output: string +def ediid2localid: + if test("^ark:/\\d+/") then + sub("ark:/\\d+/"; "") + else . end +; + +# the full URL for PDR-generated landing page, given the EDI-ID +# +# Input: string +# Output: string +def pdrLandingPageURL: ediid2localid | (pdrLandingPageBaseURL + .); + # extract the path component from a URI # # Input: string @@ -209,7 +230,7 @@ def dist2download: .["filepath"] = ( .downloadURL | filepath ) | .["@type"] = [ "nrdp:DataFile", "nrdp:DownloadableFile", "dcat:Distribution" ] | .["@id"] = (. | componentID("cmps/")) | - .["_extensionSchemas"] = [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" ] | + .["_extensionSchemas"] = [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ] | if .format then .format = { description: .format } else . end ; @@ -223,7 +244,7 @@ def dist2checksum: .["filepath"] = ( .downloadURL | filepath ) | .["@type"] = [ "nrdp:ChecksumFile", "nrdp:DownloadableFile", "dcat:Distribution" ] | .["@id"] = (. | componentID("cmps/")) | - .["_extensionSchemas"] = [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/ChecksumFile" ] | + .["_extensionSchemas"] = [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/ChecksumFile" ] | .["mediaType"] = "text/plain" | .["algorithm"] = { "@type": "Thing", tag: (.filepath|extension) } | if .description then . else .["description"] = "SHA-256 checksum value for "+(.filepath|basename|remove_extension) end | @@ -263,7 +284,7 @@ def dist2inaccess: def dist2accesspage: .["@type"] = [ "nrdp:AccessPage", "dcat:Distribution" ] | .["@id"] = (. | componentID("#")) | - .["_extensionSchemas"] = [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/AccessPage" ] | + .["_extensionSchemas"] = [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/AccessPage" ] | if .format then .format = { description: .format } else . end ; @@ -522,6 +543,7 @@ def podds2resource: if .references then .references = (.references | map(cvtref)) else del(.references) end | if .components then .components = (.components | map(dist2comp) | insert_subcoll_comps) else del(.components) end | if .doi then . else del(.doi) end | + if .landingPage then . else .landingPage = (.ediid | pdrLandingPageURL) end | if .theme then .theme = [.theme|.[]|gsub("->"; ":")] else del(.theme) end | if .topic then . else del(.topic) end | if .issued then . else del(.issued) end | diff --git a/jq/tests/data/minimal_pod.json b/jq/tests/data/minimal_pod.json new file mode 100644 index 0000000..677154e --- /dev/null +++ b/jq/tests/data/minimal_pod.json @@ -0,0 +1,25 @@ +{ + "@type": "dcat:Dataset", + "title": "A Minimal Record", + "identifier": "EBC9DB05EDF05B0EE043065706812DF87", + "contactPoint": { + "@type": "vcard:Contact", + "fn": "Bob", + "hasEmail": "mailto:bob@nist.gov" + }, + "description": "This is a minimal description.", + "keyword": [ "testing" ], + "landingPage": null, + "modified": "2014-03-05", + "accessLevel": "public", + "bureauCode": [ + "006:55" + ], + "programCode": [ + "006:052" + ], + "publisher": { + "@type": "org:Organization", + "name": "National Institute of Standards and Technology" + } +} diff --git a/jq/tests/test_pod2nerdm.jqt b/jq/tests/test_pod2nerdm.jqt index df26551..0056f2d 100644 --- a/jq/tests/test_pod2nerdm.jqt +++ b/jq/tests/test_pod2nerdm.jqt @@ -10,14 +10,14 @@ # include "pod2nerdm"; nerdm_schema null -"https://data.nist.gov/od/dm/nerdm-schema/v0.2#" +"https://data.nist.gov/od/dm/nerdm-schema/v0.3#" #-------------- # testing nerdm_schema() # include "pod2nerdm"; nerdm_pub_schema null -"https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#" +"https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#" #-------------- # testing nerdm_context() @@ -31,7 +31,7 @@ null # include "pod2nerdm"; dciteRefType null -"https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" +"https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" #-------------- # testing resid() @@ -44,12 +44,54 @@ include "pod2nerdm"; def resid: "ID"; resid null "ID" +#-------------- +# testing pdrLandingPageBaseURL() +# +include "pod2nerdm"; pdrLandingPageBaseURL +null +"https://data.nist.gov/od/id/" + +#-------------- +# testing ediid2localid() +# +include "pod2nerdm"; ediid2localid +"3A1EE2F169DD3B8CE0531A570681DB5D1491" +"3A1EE2F169DD3B8CE0531A570681DB5D1491" + +#-------------- +# testing ediid2localid() +# +include "pod2nerdm"; ediid2localid +"mds2-1491" +"mds2-1491" + +#-------------- +# testing ediid2localid() +# +include "pod2nerdm"; ediid2localid +"ark:/88844/pdr2-1491" +"pdr2-1491" + +#-------------- +# testing pdrLandingPageURL() +# +include "pod2nerdm"; pdrLandingPageURL +"sdi2487gha1/v1" +"https://data.nist.gov/od/id/sdi2487gha1/v1" + +#-------------- +# testing pdrLandingPageURL() +# +include "pod2nerdm"; pdrLandingPageURL +"ark:/88444/pdr0-sdi2487gha1" +"https://data.nist.gov/od/id/pdr0-sdi2487gha1" + #-------------- # testing cvtref() # include "pod2nerdm"; map(cvtref) [ "http://goob.net/doc1.txt", "https://goob.gov/doc2.txt" ] -[{ "@type": ["deo:BibliographicReference"],"@id":"#ref:doc1.txt", "refType": "IsReferencedBy", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" ], "location": "http://goob.net/doc1.txt"}, { "@type": ["deo:BibliographicReference"],"@id":"#ref:doc2.txt", "refType": "IsReferencedBy", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" ], "location": "https://goob.gov/doc2.txt"}] +[{ "@type": ["deo:BibliographicReference"],"@id":"#ref:doc1.txt", "refType": "IsReferencedBy", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ], "location": "http://goob.net/doc1.txt"}, { "@type": ["deo:BibliographicReference"],"@id":"#ref:doc2.txt", "refType": "IsReferencedBy", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ], "location": "https://goob.gov/doc2.txt"}] #--------------- # testing filepath() @@ -178,14 +220,14 @@ include "pod2nerdm"; map(componentID("#")) # include "pod2nerdm"; dist2download {"describedBy": "http://data.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", "downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json", "mediaType": "application/json","title": "Titanium Boride" } -{"describedBy": "http://data.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", "downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json","mediaType": "application/json", "title": "Titanium Boride", "filepath":"srd13_B-101.json", "@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/srd13_B-101.json","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile"]} +{"describedBy": "http://data.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", "downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json","mediaType": "application/json", "title": "Titanium Boride", "filepath":"srd13_B-101.json", "@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/srd13_B-101.json","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile"]} #-------------- # testing dist2checksum() # include "pod2nerdm"; dist2checksum {"downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json.sha256", "title": "Checksum for srd13_B-101.json" } -{"downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json.sha256","mediaType": "text/plain", "description": "SHA-256 checksum value for srd13_B-101.json", "title": "Checksum for srd13_B-101.json", "filepath":"srd13_B-101.json.sha256", "algorithm": {"@type": "Thing","tag": "sha256"},"@type": ["nrdp:ChecksumFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/srd13_B-101.json.sha256","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/ChecksumFile"]} +{"downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json.sha256","mediaType": "text/plain", "description": "SHA-256 checksum value for srd13_B-101.json", "title": "Checksum for srd13_B-101.json", "filepath":"srd13_B-101.json.sha256", "algorithm": {"@type": "Thing","tag": "sha256"},"@type": ["nrdp:ChecksumFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/srd13_B-101.json.sha256","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/ChecksumFile"]} #-------------- # testing dist2hidden() @@ -206,7 +248,7 @@ include "pod2nerdm"; dist2inaccess # include "pod2nerdm"; dist2accesspage {"accessURL": "https://doi.org/10.18434/T42C7D","title": "A Library to Enable the Modeling of Optical Imaging of Finite Multi-Line Arrays"} -{"accessURL": "https://doi.org/10.18434/T42C7D","title": "A Library to Enable the Modeling of Optical Imaging of Finite Multi-Line Arrays","@type": [ "nrdp:AccessPage", "dcat:Distribution" ],"@id":"#10.18434/T42C7D","_extensionSchemas":["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/AccessPage"]} +{"accessURL": "https://doi.org/10.18434/T42C7D","title": "A Library to Enable the Modeling of Optical Imaging of Finite Multi-Line Arrays","@type": [ "nrdp:AccessPage", "dcat:Distribution" ],"@id":"#10.18434/T42C7D","_extensionSchemas":["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/AccessPage"]} #-------------- # testing dist2comp() @@ -225,7 +267,7 @@ include "pod2nerdm"; dist2comp # include "pod2nerdm"; dist2comp {"describedBy": "http://data.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", "downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json", "mediaType": "application/json","title": "Titanium Boride" } -{"describedBy": "http://data.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", "downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json","mediaType": "application/json", "title": "Titanium Boride", "filepath":"srd13_B-101.json", "@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/srd13_B-101.json","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile"]} +{"describedBy": "http://data.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", "downloadURL": "http://data.nist.gov/srd/srd_data/srd13_B-101.json","mediaType": "application/json", "title": "Titanium Boride", "filepath":"srd13_B-101.json", "@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/srd13_B-101.json","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile"]} #-------------- # testing dist2comp() @@ -235,7 +277,7 @@ include "pod2nerdm"; dist2comp # include "pod2nerdm"; dist2comp {"accessURL": "http://www.nsrl.nist.gov/Downloads.htm","conformsTo": "http://www.nsrl.nist.gov/Documents/Data-Formats-of-the-NSRL-Reference-Data-Set-16.pdf","downloadURL": "http://www.nsrl.nist.gov/RDS/rds_2.50/RDS_250.iso","format": "ISO 9660 disk image","mediaType": "application/zip" } -{"accessURL": "http://www.nsrl.nist.gov/Downloads.htm","conformsTo": "http://www.nsrl.nist.gov/Documents/Data-Formats-of-the-NSRL-Reference-Data-Set-16.pdf","downloadURL": "http://www.nsrl.nist.gov/RDS/rds_2.50/RDS_250.iso","format": { "description": "ISO 9660 disk image"},"mediaType": "application/zip", "filepath":"RDS_250.iso", "@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/RDS_250.iso","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile"] } +{"accessURL": "http://www.nsrl.nist.gov/Downloads.htm","conformsTo": "http://www.nsrl.nist.gov/Documents/Data-Formats-of-the-NSRL-Reference-Data-Set-16.pdf","downloadURL": "http://www.nsrl.nist.gov/RDS/rds_2.50/RDS_250.iso","format": { "description": "ISO 9660 disk image"},"mediaType": "application/zip", "filepath":"RDS_250.iso", "@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"],"@id":"cmps/RDS_250.iso","_extensionSchemas": ["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile"] } #-------------- # testing dist2comp() @@ -245,7 +287,7 @@ include "pod2nerdm"; dist2comp # include "pod2nerdm"; dist2comp {"accessURL": "http://webbook.nist.gov/chemistry/","description": "Landing page for the NIST Chemistry WebBook.","mediaType": "text/html"} -{ "accessURL": "http://webbook.nist.gov/chemistry/","description": "Landing page for the NIST Chemistry WebBook.","mediaType": "text/html","@type": ["nrdp:AccessPage","dcat:Distribution"],"@id":"#chemistry/","_extensionSchemas":["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/AccessPage"]} +{ "accessURL": "http://webbook.nist.gov/chemistry/","description": "Landing page for the NIST Chemistry WebBook.","mediaType": "text/html","@type": ["nrdp:AccessPage","dcat:Distribution"],"@id":"#chemistry/","_extensionSchemas":["https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/AccessPage"]} # testing dist2comp() # @@ -347,13 +389,13 @@ include "pod2nerdm"; select_comp_type("nrdp:Subcollection"; "foo/bar") # include "pod2nerdm"; create_subcoll_for "a/b/foo" -{"@id": "cmps/a/b/foo", "@type": ["nrdp:Subcollection"], "filepath": "a/b/foo", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" ]} +{"@id": "cmps/a/b/foo", "@type": ["nrdp:Subcollection"], "filepath": "a/b/foo", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ]} # testing insert_subcoll_comps # include "pod2nerdm"; insert_subcoll_comps [{ "title": "Titanium Boride", "filepath": "foo/srd13_B-101.json","@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"]},{ "title": "foo", "filepath": "foo", "@type": [ "nrdp:Subcollection"]},{"title": "Titanium Boride","filepath": "foo/bar/srd13_B-101.json","@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"]},{ "title": "foo bar goo", "filepath": "foo/bar/goo", "@type": ["nrdp:Subcollection"]}] -[{"@id": "cmps/foo/bar", "@type": ["nrdp:Subcollection"], "filepath": "foo/bar", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" ]},{ "title": "Titanium Boride", "filepath": "foo/srd13_B-101.json","@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"]},{ "title": "foo", "filepath": "foo", "@type": [ "nrdp:Subcollection"]},{"title": "Titanium Boride","filepath": "foo/bar/srd13_B-101.json","@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"]},{ "title": "foo bar goo", "filepath": "foo/bar/goo", "@type": ["nrdp:Subcollection"]}] +[{"@id": "cmps/foo/bar", "@type": ["nrdp:Subcollection"], "filepath": "foo/bar", "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ]},{ "title": "Titanium Boride", "filepath": "foo/srd13_B-101.json","@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"]},{ "title": "foo", "filepath": "foo", "@type": [ "nrdp:Subcollection"]},{"title": "Titanium Boride","filepath": "foo/bar/srd13_B-101.json","@type": ["nrdp:DataFile","nrdp:DownloadableFile","dcat:Distribution"]},{ "title": "foo bar goo", "filepath": "foo/bar/goo", "@type": ["nrdp:Subcollection"]}] diff --git a/jq/tests/test_podds2resource.py b/jq/tests/test_podds2resource.py index cea166f..fd99032 100755 --- a/jq/tests/test_podds2resource.py +++ b/jq/tests/test_podds2resource.py @@ -3,11 +3,12 @@ import os, unittest, json, subprocess as subproc, types, pdb import ejsonschema as ejs -nerdm = "https://data.nist.gov/od/dm/nerdm-schema/v0.2#" -nerdmpub = "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#" +nerdm = "https://data.nist.gov/od/dm/nerdm-schema/v0.3#" +nerdmpub = "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#" datadir = os.path.join(os.path.dirname(__file__), "data") janaffile = os.path.join(datadir, "janaf_pod.json") corrfile = os.path.join(datadir, "CORR-DATA.json") +minfile = os.path.join(datadir, "minimal_pod.json") pdlfile = os.path.join(datadir, "nist-pdl-oct2016.json") jqlib = os.path.dirname(os.path.abspath(os.path.dirname(__file__))) schemadir = os.path.join(os.path.dirname(jqlib), "model") @@ -28,7 +29,7 @@ def test_context(self): def test_schema(self): self.assertEquals(self.out['_schema'], - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#") + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#") def test_extsch(self): exts = self.out['_extensionSchemas'] @@ -141,7 +142,7 @@ def test_context(self): def test_schema(self): self.assertEquals(self.out['_schema'], - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#") + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#") def test_extsch(self): exts = self.out['_extensionSchemas'] @@ -230,6 +231,32 @@ def test_theme(self): self.assertEqual(theme[1], "Materials characterization") +class TestMinimal(unittest.TestCase): # + + def setUp(self): + # pdb.set_trace() # nerdm::podds2resourc + self.out = send_file_thru_jq('nerdm::podds2resource', minfile, + {"id": "ark:ID"}) + + def test_id(self): self.assertEquals(self.out['@id'], "ark:ID") + def test_al(self): self.assertEquals(self.out['accessLevel'], "public") + def test_context(self): + self.assertEquals(self.out['@context'], + [ "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", + {"@base": "ark:ID"} ]) + + def test_arestr(self): + props = "title modified ediid landingPage".split() + for prop in props: + self.assertIn(prop, self.out, "Property not found: " + prop) + self.assertIsInstance(self.out[prop], types.StringTypes, + "Property '{0}' not a string: {1}".format(prop, self.out[prop])) + + def test_default_landingPage(self): + self.assertIsNotNone(self.out.get('landingPage')) + self.assertEqual(self.out.get('landingPage'), + "https://data.nist.gov/od/id/EBC9DB05EDF05B0EE043065706812DF87") + class TestValidateNerdm(unittest.TestCase): def setUp(self): @@ -250,7 +277,6 @@ def test_with_doi(self): out = send_jsonstr_thru_jq('nerdm::podds2resource', ds, {"id": "ark:ID"}) self.val.validate(out, False, True) - def format_argopts(argdata): """ diff --git a/model/examples/ceramicsportal-0.2.json b/model/examples/ceramicsportal-0.2.json new file mode 100644 index 0000000..ad3ba59 --- /dev/null +++ b/model/examples/ceramicsportal-0.2.json @@ -0,0 +1,115 @@ +{ + "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + + "@type": [ "nrdp:Portal", "nrdp:SRD", "nrdp:PublishedDataResource" ], + "@id": "ark:/88434/sdp0fjspek352", + "doi": "doi:10.18434/T4XS3S", + "title": "NIST Ceramics WebBook - SRD 151", + "abbrev": [ "SRD#151" ], + "aka": [ "NIST Ceramics Portal" ], + "contactPoint": { + "hasEmail": "mailto:angela.lee@nist.gov", + "@type": "vcard:Contact", + "fn": "Angela Lee", + "address": [ + "Standard Reference Data Program", + "National Institute of Standards and Technology", + "Gaithersburg, MD 20899-2300" + ], + "phoneNumber": "+1-301-975-2200" + }, + "modified": "2015-06-22", + + "ediid": "ECBCC1C130132ED9E04306570681B10725", + "landingPage": "http://srdata.nist.gov/CeramicDataPortal/", + + "description": [ "The Ceramics Webbook is a gateway to evaluated data related to ceramic materials. It includes access to specific searchable ceramics-related SRDs and reports." ], + "keyword": [ + "ceramics", + "chemical properties", + "electrical properties", + "glasses", + "high Tc superconductors", + "mechanical properties", + "physical properties", + "structural ceramics", + "thermal properties" + ], + "accessLevel": "public", + "license": "http://www.nist.gov/data/license.cfm", + "dataQuality": true, + + "inventory": [ + { + "forCollection": "", + "childCount": 6, + "descCount": 6, + "byType": [ + { + "forType": "nrd:IncludedResource", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [] + } + ], + "components": [ + { + "@type": [ "nrd:IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "title": "NIST High Temperature Superconducting Materials Database - SRD 62", + "proxyFor": "ark:/88434/sdp0fjspek353", + "resourceType": [ "nrd:SRD", "nrd:Database", "nrd:DataPublication" ] + }, + { + "@type": [ "nrd:IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "title": "NIST Structural Ceramics Database - SRD 30", + "proxyFor": "ark:/88434/sdp0fjspek354", + "resourceType": [ "nrd:SRD", "nrd:Database", "nrd:DataPublication" ] + }, + { + "@type": [ "nrd:IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "title": "NIST Property Data Summaries for Advanced Materials - SRD 150", + "proxyFor": "ark:/88434/sdp0fjspek355", + "resourceType": [ "nrd:SRD", "nrd:DataPublication" ] + }, + { + "@type": [ "nrd:IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "title": "Elastic Moduli data for Polycrystalline Ceramics - NISTIR 6853", + "proxyFor": "ark:/88434/sdp0fjspek354", + "resourceType": [ "nrd:DataPublication" ] + }, + { + "@type": [ "nrd:IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "title": "Fracture Toughness/Fracture Energy Data for Oxide Glass - SRD 137", + "proxyFor": "ark:/88434/sdp0fjspek354", + "resourceType": [ "nrd:SRD", "nrd:DataPublication" ] + }, + { + "@type": [ "nrd:IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "title": "Fracture Toughness/Fracture Energy Data for - SRD 138", + "proxyFor": "ark:/88434/sdp0fjspek354", + "resourceType": [ "nrd:SRD", "nrd:DataPublication" ] + } + ], + + "publisher": { + "@type": "org:Organization", + "name": "National Institute of Standards and Technology" + }, + "language": [ "en" ], + "bureauCode": [ + "006:55" + ], + "programCode": [ + "006:052" + ] +} diff --git a/model/examples/ceramicsportal.json b/model/examples/ceramicsportal.json index ad3ba59..fa9f603 100644 --- a/model/examples/ceramicsportal.json +++ b/model/examples/ceramicsportal.json @@ -1,7 +1,7 @@ { "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", - "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataPublication" ], "@type": [ "nrdp:Portal", "nrdp:SRD", "nrdp:PublishedDataResource" ], "@id": "ark:/88434/sdp0fjspek352", @@ -59,42 +59,42 @@ "components": [ { "@type": [ "nrd:IncludedResource" ], - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/IncludedResource" ], "title": "NIST High Temperature Superconducting Materials Database - SRD 62", "proxyFor": "ark:/88434/sdp0fjspek353", "resourceType": [ "nrd:SRD", "nrd:Database", "nrd:DataPublication" ] }, { "@type": [ "nrd:IncludedResource" ], - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/IncludedResource" ], "title": "NIST Structural Ceramics Database - SRD 30", "proxyFor": "ark:/88434/sdp0fjspek354", "resourceType": [ "nrd:SRD", "nrd:Database", "nrd:DataPublication" ] }, { "@type": [ "nrd:IncludedResource" ], - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/IncludedResource" ], "title": "NIST Property Data Summaries for Advanced Materials - SRD 150", "proxyFor": "ark:/88434/sdp0fjspek355", "resourceType": [ "nrd:SRD", "nrd:DataPublication" ] }, { "@type": [ "nrd:IncludedResource" ], - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/IncludedResource" ], "title": "Elastic Moduli data for Polycrystalline Ceramics - NISTIR 6853", "proxyFor": "ark:/88434/sdp0fjspek354", "resourceType": [ "nrd:DataPublication" ] }, { "@type": [ "nrd:IncludedResource" ], - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/IncludedResource" ], "title": "Fracture Toughness/Fracture Energy Data for Oxide Glass - SRD 137", "proxyFor": "ark:/88434/sdp0fjspek354", "resourceType": [ "nrd:SRD", "nrd:DataPublication" ] }, { "@type": [ "nrd:IncludedResource" ], - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/IncludedResource" ], + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/IncludedResource" ], "title": "Fracture Toughness/Fracture Energy Data for - SRD 138", "proxyFor": "ark:/88434/sdp0fjspek354", "resourceType": [ "nrd:SRD", "nrd:DataPublication" ] diff --git a/model/examples/hitsc-0.2.json b/model/examples/hitsc-0.2.json new file mode 100644 index 0000000..46832e0 --- /dev/null +++ b/model/examples/hitsc-0.2.json @@ -0,0 +1,103 @@ +{ + "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + + "@type": [ "nrdp:Database", "nrdp:SRD", "nrdp:PublishedDataResource" ], + "@id": "ark:/88434/sdp0fjspek353", + "title": "NIST High Temperature Superconducting Materials Database - SRD 62", + "version": "1.0", + "versionHistory": [ + { + "version": "1.0", + "issued": "2015-06-22", + "refid": "ark:/88434/sdp0fjspek353", + "description": "initial release" + } + ], + "abbrev": [ "SRD#62" ], + "isPartOf": { + "@id": "ark:/88434/sdp0fjspek352", + "title": "NIST Ceramics WebBook - SRD 151", + "proxyFor": "ark:/88434/sdp0fjspek352", + "@type": [ "nrdp:Portal", "nrdp:SRD" ] + }, + "contactPoint": { + "hasEmail": "mailto:angela.lee@nist.gov", + "@type": "vcard:Contact", + "fn": "Angela Lee", + "address": [ + "Standard Reference Data Program", + "National Institute of Standards and Technology", + "Gaithersburg, MD 20899-2300" + ], + "phoneNumber": "+1-301-975-2200" + }, + "modified": "2015-06-22", + + "ediid": "ECBCC1C130112ED9E04306570681B10723", + "landingPage": "http://srdata.nist.gov/CeramicDataPortal/hit", + + "description": [ + "The NIST WWW High Temperature Superconductors database (WebHTS) provides evaluated thermal, mechanical, and superconducting property data for oxide superconductors. The range of materials covers the major series of compounds derived from the Y-Ba-Cu-O, Bi-Sr-Ca-Cu-O, Tl-Sr-Ca-Cu-O, and La-Cu-O chemical families, along with numerous other variants of the cuprate and bismuthate materials that are known to have superconducting phases. The materials are described by specification and characterization information that includes processing details and chemical compositions. Physical characteristics such as density and crystal structure are given in numeric tables. All measured values are evaluated and supported by descriptions of the measurement methods, procedures, and conditions. In all cases, the sources of the data are fully documented in a comprehensive bibliography." + ], + "keyword": [ + "high-temperature", + "high-temperature superconducting materials", + "high-temperature superconducting materials database" + ], + "references": [ + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "User Manual", + "location": "https://srdata.nist.gov/CeramicDataPortal/Manual/HtsHelper", + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + ] + } + ], + "accessLevel": "public", + "license": "http://www.nist.gov/data/license.cfm", + "dataQuality": true, + + "inventory": [ + { + "forCollection": "", + "childCount": 0, + "descCount": 0, + "byType": [ + { + "forType": "nrdp:SearchPage", + "childCount": 1, + "descCount": 1 + }, + { + "forType": "nrdp:Tool", + "childCount": 1, + "descCount": 1 + } + ], + "childCollections": [] + } + ], + "components": [ + { + "@type": [ "nrdp:SearchPage", "nrdp:Tool" ], + "accessURL": "http://srdata.nist.gov/CeramicDataPortal/hit", + "description": "This web page allows users to search the database by author's last name, publication source, chemical family, informal name, publication volume, publication year, structure type, and properties." + } + ], + + "publisher": { + "@type": "org:Organization", + "name": "National Institute of Standards and Technology" + }, + "language": [ "en" ], + "bureauCode": [ + "006:55" + ], + "programCode": [ + "006:052" + ] +} diff --git a/model/examples/hitsc.json b/model/examples/hitsc.json index 46832e0..c8a0ae8 100644 --- a/model/examples/hitsc.json +++ b/model/examples/hitsc.json @@ -1,7 +1,7 @@ { "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", - "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataPublication" ], "@type": [ "nrdp:Database", "nrdp:SRD", "nrdp:PublishedDataResource" ], "@id": "ark:/88434/sdp0fjspek353", @@ -53,7 +53,7 @@ "label": "User Manual", "location": "https://srdata.nist.gov/CeramicDataPortal/Manual/HtsHelper", "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ] } ], diff --git a/model/examples/janaf-0.2.json b/model/examples/janaf-0.2.json new file mode 100644 index 0000000..1d3d778 --- /dev/null +++ b/model/examples/janaf-0.2.json @@ -0,0 +1,4005 @@ +{ + "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + + "@type": [ "nrd:SRD", "nrdp:DataPublication", "nrdp:PublicDataResource" ], + "@id": "ark:/88434/sdp0fjspek351", + "doi": "doi:10.18434/T42S31", + "title": "NIST-JANAF Thermochemical Tables - SRD 13", + "abbrev": [ "SRD#13" ], + "authors": [ + { + "fn": "M.W. Chase, Jr.", + "givenName": "M.", + "middleName": "W.", + "familyName": "Chase", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Chase-MW" + }, + { + "fn": "C.A. Davies", + "givenName": "C.", + "middleName": "A.", + "familyName": "Davies", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Davies-CA" + }, + { + "fn": "J.R. Downey, Jr.", + "givenName": "J.", + "middleName": "R.", + "familyName": "Downey", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Downey-JR" + }, + { + "fn": "D.J. Frurip", + "givenName": "D.", + "middleName": "J.", + "familyName": "Frurip", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Frurip-DJ" + }, + { + "fn": "R.A. McDonald", + "givenName": "R.", + "familyName": "McDonald", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:McDonald-RA" + }, + { + "fn": "A.N. Syverud", + "givenName": "A.", + "middleName": "N.", + "familyName": "Syverud", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Syverud-AN" + } + ], + "contactPoint": { + "hasEmail": "mailto:thomas.allison@nist.gov", + "fn": "Thomas Allison", + "address": [ + "Standard Reference Data Program", + "National Institute of Standards and Technology", + "Gaithersburg, MD 20899" + ] + }, + "issued": "1964", + "modified": "2013-01-01", + + + "ediid": "ECBCC1C1301D2ED9E04306570681B10735", + "landingPage": "http://kinetics.nist.gov/janaf/", + + "description": [ + "This Fourth Edition to NIST-JANAF (Joint Army-Navy-Air Force) Thermochemical Tables contains tables of recommended temperature-dependent values for the standard enthalpy of formation Gibbs (free) energy of formation, the logarithm of equilibrium constant of formation, the heat capacity, entropy, enthalpy, and Gibbs energy function for 48 elements and many of their compounds. This publication is a current collection of all tables issued through 1997 under contracts with the U.S. Departement of Energy and the U.S. Air Force Office of Scientific Research, NASA, the JANNAF Combustion Subcommittee, and the SRD Program." + ], + "keyword": [ + "thermochemical tables", + "enthalpy", + "entropy", + "Gibbs free energy", + "equilibrium constant of formation" + ], + "references": [ + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 1 (AL-C", + "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol1-Intro.pdf", + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + ] + }, + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 2 (Cr-Zr)", + "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol2-Intro.pdf", + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + ] + } + ], + "accessLevel": "public", + "license": "http://www.nist.gov/data/license.cfm", + "inventory": [ + { + "forCollection": "", + "childCount": 318, + "descCount": 318, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 318, + "descCount": 318 + }, + { + "forType": "nrdp:DataFile", + "childCount": 318, + "descCount": 318 + } + ], + "childCollections": [] + } + ], + "dataHierarchy": [ + { "filepath": "srd13_B-101.json" }, + { "filepath": "srd13_B-102.json" }, + { "filepath": "srd13_B-103.json" }, + { "filepath": "srd13_B-104.json" }, + { "filepath": "srd13_B-105.json" }, + { "filepath": "srd13_B-106.json" }, + { "filepath": "srd13_B-107.json" }, + { "filepath": "srd13_B-108.json" }, + { "filepath": "srd13_B-109.json" }, + { "filepath": "srd13_B-110.json" }, + { "filepath": "srd13_B-111.json" }, + { "filepath": "srd13_B-112.json" }, + { "filepath": "srd13_B-113.json" }, + { "filepath": "srd13_B-114.json" }, + { "filepath": "srd13_B-115.json" }, + { "filepath": "srd13_B-116.json" }, + { "filepath": "srd13_B-117.json" }, + { "filepath": "srd13_B-118.json" }, + { "filepath": "srd13_B-119.json" }, + { "filepath": "srd13_B-120.json" }, + { "filepath": "srd13_B-121.json" }, + { "filepath": "srd13_B-122.json" }, + { "filepath": "srd13_B-123.json" }, + { "filepath": "srd13_B-124.json" }, + { "filepath": "srd13_B-125.json" }, + { "filepath": "srd13_B-126.json" }, + { "filepath": "srd13_B-127.json" }, + { "filepath": "srd13_B-128.json" }, + { "filepath": "srd13_B-129.json" }, + { "filepath": "srd13_B-130.json" }, + { "filepath": "srd13_B-131.json" }, + { "filepath": "srd13_B-132.json" }, + { "filepath": "srd13_B-133.json" }, + { "filepath": "srd13_B-134.json" }, + { "filepath": "srd13_B-135.json" }, + { "filepath": "srd13_B-136.json" }, + { "filepath": "srd13_B-137.json" }, + { "filepath": "srd13_B-138.json" }, + { "filepath": "srd13_B-139.json" }, + { "filepath": "srd13_janaf-zipfile.zip" }, + { "filepath": "srd13_janaf.species.json" }, + { "filepath": "srd13_Al-001.json" }, + { "filepath": "srd13_Al-002.json" }, + { "filepath": "srd13_Al-003.json" }, + { "filepath": "srd13_Al-004.json" }, + { "filepath": "srd13_Al-005.json" }, + { "filepath": "srd13_Al-006.json" }, + { "filepath": "srd13_Al-007.json" }, + { "filepath": "srd13_Al-008.json" }, + { "filepath": "srd13_Al-009.json" }, + { "filepath": "srd13_Al-010.json" }, + { "filepath": "srd13_Al-011.json" }, + { "filepath": "srd13_Al-012.json" }, + { "filepath": "srd13_Al-013.json" }, + { "filepath": "srd13_Al-014.json" }, + { "filepath": "srd13_Al-015.json" }, + { "filepath": "srd13_Al-016.json" }, + { "filepath": "srd13_Al-017.json" }, + { "filepath": "srd13_Al-018.json" }, + { "filepath": "srd13_Al-019.json" }, + { "filepath": "srd13_Al-020.json" }, + { "filepath": "srd13_Al-021.json" }, + { "filepath": "srd13_Al-022.json" }, + { "filepath": "srd13_Al-023.json" }, + { "filepath": "srd13_Al-024.json" }, + { "filepath": "srd13_Al-025.json" }, + { "filepath": "srd13_Al-026.json" }, + { "filepath": "srd13_Al-027.json" }, + { "filepath": "srd13_Al-028.json" }, + { "filepath": "srd13_Al-029.json" }, + { "filepath": "srd13_Al-030.json" }, + { "filepath": "srd13_Al-031.json" }, + { "filepath": "srd13_Al-032.json" }, + { "filepath": "srd13_Al-033.json" }, + { "filepath": "srd13_Al-034.json" }, + { "filepath": "srd13_Al-035.json" }, + { "filepath": "srd13_Al-036.json" }, + { "filepath": "srd13_Al-037.json" }, + { "filepath": "srd13_Al-038.json" }, + { "filepath": "srd13_Al-039.json" }, + { "filepath": "srd13_Al-040.json" }, + { "filepath": "srd13_Al-041.json" }, + { "filepath": "srd13_Al-042.json" }, + { "filepath": "srd13_Al-043.json" }, + { "filepath": "srd13_Al-044.json" }, + { "filepath": "srd13_Al-045.json" }, + { "filepath": "srd13_Al-046.json" }, + { "filepath": "srd13_Al-047.json" }, + { "filepath": "srd13_Al-048.json" }, + { "filepath": "srd13_Al-049.json" }, + { "filepath": "srd13_Al-050.json" }, + { "filepath": "srd13_Al-051.json" }, + { "filepath": "srd13_Al-052.json" }, + { "filepath": "srd13_Al-053.json" }, + { "filepath": "srd13_Al-054.json" }, + { "filepath": "srd13_Al-055.json" }, + { "filepath": "srd13_Al-056.json" }, + { "filepath": "srd13_Al-057.json" }, + { "filepath": "srd13_Al-058.json" }, + { "filepath": "srd13_Al-059.json" }, + { "filepath": "srd13_Al-060.json" }, + { "filepath": "srd13_Al-061.json" }, + { "filepath": "srd13_Al-062.json" }, + { "filepath": "srd13_Al-063.json" }, + { "filepath": "srd13_Al-064.json" }, + { "filepath": "srd13_Al-065.json" }, + { "filepath": "srd13_Al-066.json" }, + { "filepath": "srd13_Al-067.json" }, + { "filepath": "srd13_Al-068.json" }, + { "filepath": "srd13_Al-069.json" }, + { "filepath": "srd13_Al-070.json" }, + { "filepath": "srd13_Al-071.json" }, + { "filepath": "srd13_Al-072.json" }, + { "filepath": "srd13_Al-073.json" }, + { "filepath": "srd13_Al-074.json" }, + { "filepath": "srd13_Al-075.json" }, + { "filepath": "srd13_Al-076.json" }, + { "filepath": "srd13_Al-077.json" }, + { "filepath": "srd13_Al-078.json" }, + { "filepath": "srd13_Al-079.json" }, + { "filepath": "srd13_Al-080.json" }, + { "filepath": "srd13_Al-081.json" }, + { "filepath": "srd13_Al-082.json" }, + { "filepath": "srd13_Al-083.json" }, + { "filepath": "srd13_Al-084.json" }, + { "filepath": "srd13_Al-085.json" }, + { "filepath": "srd13_Rn-002.json" }, + { "filepath": "srd13_Al-086.json" }, + { "filepath": "srd13_Al-087.json" }, + { "filepath": "srd13_Al-088.json" }, + { "filepath": "srd13_Al-089.json" }, + { "filepath": "srd13_Al-090.json" }, + { "filepath": "srd13_Al-091.json" }, + { "filepath": "srd13_Al-092.json" }, + { "filepath": "srd13_Al-093.json" }, + { "filepath": "srd13_Al-094.json" }, + { "filepath": "srd13_Al-095.json" }, + { "filepath": "srd13_Al-096.json" }, + { "filepath": "srd13_Al-097.json" }, + { "filepath": "srd13_Al-098.json" }, + { "filepath": "srd13_Al-099.json" }, + { "filepath": "srd13_Al-100.json" }, + { "filepath": "srd13_Al-101.json" }, + { "filepath": "srd13_Al-102.json" }, + { "filepath": "srd13_Al-103.json" }, + { "filepath": "srd13_Al-104.json" }, + { "filepath": "srd13_Al-105.json" }, + { "filepath": "srd13_Al-106.json" }, + { "filepath": "srd13_Al-107.json" }, + { "filepath": "srd13_Al-108.json" }, + { "filepath": "srd13_Al-109.json" }, + { "filepath": "srd13_Al-110.json" }, + { "filepath": "srd13_Al-111.json" }, + { "filepath": "srd13_Al-112.json" }, + { "filepath": "srd13_Ar-001.json" }, + { "filepath": "srd13_Ar-002.json" }, + { "filepath": "srd13_B-001.json" }, + { "filepath": "srd13_B-002.json" }, + { "filepath": "srd13_B-003.json" }, + { "filepath": "srd13_B-004.json" }, + { "filepath": "srd13_B-005.json" }, + { "filepath": "srd13_B-006.json" }, + { "filepath": "srd13_B-007.json" }, + { "filepath": "srd13_B-008.json" }, + { "filepath": "srd13_B-009.json" }, + { "filepath": "srd13_B-010.json" }, + { "filepath": "srd13_B-011.json" }, + { "filepath": "srd13_B-012.json" }, + { "filepath": "srd13_B-013.json" }, + { "filepath": "srd13_B-014.json" }, + { "filepath": "srd13_B-015.json" }, + { "filepath": "srd13_B-016.json" }, + { "filepath": "srd13_B-017.json" }, + { "filepath": "srd13_B-018.json" }, + { "filepath": "srd13_B-019.json" }, + { "filepath": "srd13_B-020.json" }, + { "filepath": "srd13_B-021.json" }, + { "filepath": "srd13_B-022.json" }, + { "filepath": "srd13_B-023.json" }, + { "filepath": "srd13_B-024.json" }, + { "filepath": "srd13_B-025.json" }, + { "filepath": "srd13_B-026.json" }, + { "filepath": "srd13_B-027.json" }, + { "filepath": "srd13_B-028.json" }, + { "filepath": "srd13_B-029.json" }, + { "filepath": "srd13_B-030.json" }, + { "filepath": "srd13_B-031.json" }, + { "filepath": "srd13_B-032.json" }, + { "filepath": "srd13_B-033.json" }, + { "filepath": "srd13_B-034.json" }, + { "filepath": "srd13_B-035.json" }, + { "filepath": "srd13_B-036.json" }, + { "filepath": "srd13_B-037.json" }, + { "filepath": "srd13_B-038.json" }, + { "filepath": "srd13_B-039.json" }, + { "filepath": "srd13_B-040.json" }, + { "filepath": "srd13_B-041.json" }, + { "filepath": "srd13_B-042.json" }, + { "filepath": "srd13_B-043.json" }, + { "filepath": "srd13_B-044.json" }, + { "filepath": "srd13_B-045.json" }, + { "filepath": "srd13_B-046.json" }, + { "filepath": "srd13_B-047.json" }, + { "filepath": "srd13_B-048.json" }, + { "filepath": "srd13_B-049.json" }, + { "filepath": "srd13_B-050.json" }, + { "filepath": "srd13_B-051.json" }, + { "filepath": "srd13_B-052.json" }, + { "filepath": "srd13_B-053.json" }, + { "filepath": "srd13_B-054.json" }, + { "filepath": "srd13_B-055.json" }, + { "filepath": "srd13_B-056.json" }, + { "filepath": "srd13_B-057.json" }, + { "filepath": "srd13_B-058.json" }, + { "filepath": "srd13_B-059.json" }, + { "filepath": "srd13_B-060.json" }, + { "filepath": "srd13_B-061.json" }, + { "filepath": "srd13_B-062.json" }, + { "filepath": "srd13_B-063.json" }, + { "filepath": "srd13_B-064.json" }, + { "filepath": "srd13_B-065.json" }, + { "filepath": "srd13_B-066.json" }, + { "filepath": "srd13_B-067.json" }, + { "filepath": "srd13_B-068.json" }, + { "filepath": "srd13_B-069.json" }, + { "filepath": "srd13_B-070.json" }, + { "filepath": "srd13_B-071.json" }, + { "filepath": "srd13_B-072.json" }, + { "filepath": "srd13_B-073.json" }, + { "filepath": "srd13_B-074.json" }, + { "filepath": "srd13_B-075.json" }, + { "filepath": "srd13_B-076.json" }, + { "filepath": "srd13_B-077.json" }, + { "filepath": "srd13_B-078.json" }, + { "filepath": "srd13_B-079.json" }, + { "filepath": "srd13_B-080.json" }, + { "filepath": "srd13_B-081.json" }, + { "filepath": "srd13_B-082.json" }, + { "filepath": "srd13_B-083.json" }, + { "filepath": "srd13_B-084.json" }, + { "filepath": "srd13_B-085.json" }, + { "filepath": "srd13_B-086.json" }, + { "filepath": "srd13_B-087.json" }, + { "filepath": "srd13_B-088.json" }, + { "filepath": "srd13_B-089.json" }, + { "filepath": "srd13_B-090.json" }, + { "filepath": "srd13_B-091.json" }, + { "filepath": "srd13_B-092.json" }, + { "filepath": "srd13_B-093.json" }, + { "filepath": "srd13_B-094.json" }, + { "filepath": "srd13_B-095.json" }, + { "filepath": "srd13_B-096.json" }, + { "filepath": "srd13_B-097.json" }, + { "filepath": "srd13_B-098.json" }, + { "filepath": "srd13_B-099.json" }, + { "filepath": "srd13_B-100.json" }, + { "filepath": "srd13_B-140.json" }, + { "filepath": "srd13_Ba-001.json" }, + { "filepath": "srd13_Ba-002.json" }, + { "filepath": "srd13_Ba-003.json" }, + { "filepath": "srd13_Br-004.json" }, + { "filepath": "srd13_Br-005.json" }, + { "filepath": "srd13_Br-006.json" }, + { "filepath": "srd13_Br-007.json" }, + { "filepath": "srd13_Br-008.json" }, + { "filepath": "srd13_Br-009.json" }, + { "filepath": "srd13_Br-010.json" }, + { "filepath": "srd13_Br-011.json" }, + { "filepath": "srd13_Br-012.json" }, + { "filepath": "srd13_Br-013.json" }, + { "filepath": "srd13_Br-014.json" }, + { "filepath": "srd13_Br-015.json" }, + { "filepath": "srd13_Br-016.json" }, + { "filepath": "srd13_Br-017.json" }, + { "filepath": "srd13_Br-018.json" }, + { "filepath": "srd13_Br-019.json" }, + { "filepath": "srd13_Br-020.json" }, + { "filepath": "srd13_Br-021.json" }, + { "filepath": "srd13_Br-022.json" }, + { "filepath": "srd13_Br-023.json" }, + { "filepath": "srd13_Br-024.json" }, + { "filepath": "srd13_Br-025.json" }, + { "filepath": "srd13_Br-026.json" }, + { "filepath": "srd13_Br-027.json" }, + { "filepath": "srd13_Br-028.json" }, + { "filepath": "srd13_Br-029.json" }, + { "filepath": "srd13_Br-030.json" }, + { "filepath": "srd13_Br-031.json" }, + { "filepath": "srd13_Br-032.json" }, + { "filepath": "srd13_Br-033.json" }, + { "filepath": "srd13_Br-034.json" }, + { "filepath": "srd13_Br-035.json" }, + { "filepath": "srd13_Br-036.json" }, + { "filepath": "srd13_Br-037.json" }, + { "filepath": "srd13_Br-038.json" }, + { "filepath": "srd13_Br-039.json" }, + { "filepath": "srd13_Br-040.json" }, + { "filepath": "srd13_Br-041.json" }, + { "filepath": "srd13_Br-042.json" }, + { "filepath": "srd13_Br-043.json" }, + { "filepath": "srd13_Br-044.json" }, + { "filepath": "srd13_Br-045.json" }, + { "filepath": "srd13_Br-046.json" }, + { "filepath": "srd13_Br-047.json" }, + { "filepath": "srd13_Br-048.json" }, + { "filepath": "srd13_Br-049.json" }, + { "filepath": "srd13_Br-050.json" }, + { "filepath": "srd13_Br-051.json" }, + { "filepath": "srd13_Br-052.json" }, + { "filepath": "srd13_Br-053.json" }, + { "filepath": "srd13_Br-054.json" }, + { "filepath": "srd13_Br-055.json" }, + { "filepath": "srd13_Br-056.json" }, + { "filepath": "srd13_Br-057.json" }, + { "filepath": "srd13_Br-058.json" }, + { "filepath": "srd13_Br-059.json" }, + { "filepath": "srd13_Br-060.json" }, + { "filepath": "srd13_Br-061.json" } + ], + "components": [ + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Titanium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Titanium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Zirconium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Zirconium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Zirconium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Trichloroboroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Fluoroboroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroboroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Trifluoroboroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Trifluoroboroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boroxin" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-113.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boric Acid" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-114.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Borazine" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-115.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-116.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-117.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-118.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-119.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-120.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-121.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-122.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-123.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-124.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-125.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lead Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-126.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Pentaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-127.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Pentaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-128.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-129.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-130.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-131.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lead Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-132.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-133.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-134.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-135.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-136.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Decaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-137.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Decaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-138.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Decaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-139.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Decaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_janaf-zipfile.zip", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip", + "mediaType": "application/zip", + "description": "A zipped file of all 1,799 JANAF species, index, and definition files.", + "title": "Compressed folder of all JANAF files" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + + "filepath": "srd13_janaf.species.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf.species.json", + "mediaType": "application/json", + "description": "An index file containing metadata for each of the species, including chemical name, data file name, CAS Number (Chemical Abstracts Registry Number), molecular formula (in Hill-sorted order), and state (or phase).", + "title": "JANAF Species Index" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride Fluoride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Tetrachloroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Tetrachloroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Hexachloroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Hexachloroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Tetrafluoroaluminate, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Tetrafluoroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Tetrafluoroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Hexafluoraluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Hexafluoroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Hexafluoroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Hexafluoroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Cryolite, Alpha" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Cryolite, Beta" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Cryolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Cryolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Hydride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Hydride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Hydroxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Hydroxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Hydroxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Hydroxide Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Tetrahydroaluminate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Nitride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Nitride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Sulfide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Rn-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Radon, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Aluminum Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Alpha" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Delta" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Gamma" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide, Kappa" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Silicate, Andalusite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Silicate, Kyanite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Silicate, Sillimanite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Sulfide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chiolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chiolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chiolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Aluminum Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Al-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Silicate, Mullite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Ar-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Argon" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Ar-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Argon, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron, Beta-Rhombohedral" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromochloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromodichloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromofluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromodifluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Bromide Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dibromoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dibromochloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dibromofluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dibromoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Tribromoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Tribromoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chloroborane, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chlorofluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Chlorodifluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Chloride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dichloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dichloroborane, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dichloroborane, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dichlorofluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dichloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Trichloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Fluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Fluoride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroborane, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroborane, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluorohydroxyborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Fluoride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Trifluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Tetrafluoroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Tetrafluoroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Tetrafluoroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Tetrafluoroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Borane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Hydride Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Hydride Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Hydride Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boric Acid" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boric Acid" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Hydride Sulfide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Hydride Sulfide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Borane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dihydroxyborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Borane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boric Acid" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boric Acid" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Tetrahydroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Tetrahydroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Tetrahydroborate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Iodoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Diiodoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Triiodoborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Nitride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Nitride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Sulfide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Titanium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Beryllium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dichloroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroborane Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dihydroxyborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dihydroxyborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Diborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Boron Oxide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lead Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Titanium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-140.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lead Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Ba-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Barium" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Ba-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Barium" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Ba-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Barium" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Calcium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine Chloride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sulfur Bromide Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Hydrogen Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromosilane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Ammonium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Iodine Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Molybdenum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromoimidogen" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Nitrosyl Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Sodium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Phosphorus Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lead Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromosilylidyne" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Strontium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Titanium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Tungsten Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Zirconium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Bromine" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Calcium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Calcium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Calcium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Calcium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Iron Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Iron Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Iron Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Iron Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Dibromosilane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Magnesium Bromide, Ion" + } + ], + "publisher": { + "@type": "org:Organization", + "name": "National Institute of Standards and Technology" + }, + "language": [ "en" ], + "bureauCode": [ + "006:55" + ], + "programCode": [ + "006:052" + ], + "theme": [ "Chemistry: Thermochemical properties", "Standards: Reference data" ], + "topic": [ + { + "@type": "Concept", + "scheme": "https://data.nist.gov/od/dm/nist-themes/v1.1", + "tag": "Chemistry: Thermochemical properties" + }, + { + "@type": "Concept", + "scheme": "https://data.nist.gov/od/dm/nist-themes/v1.1", + "tag": "Standards: Reference data" + } + ] +} diff --git a/model/examples/janaf-hier-0.2.json b/model/examples/janaf-hier-0.2.json new file mode 100644 index 0000000..be4a61a --- /dev/null +++ b/model/examples/janaf-hier-0.2.json @@ -0,0 +1,6282 @@ +{ + "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + + "@type": [ "nrd:SRD", "nrdp:DataPublication", "nrdp:PublicDataResource" ], + "@id": "ark:/88434/pdr02d4t", + "doi": "doi:10.18434/T42S31", + "title": "NIST-JANAF Thermochemical Tables - SRD 13", + "abbrev": [ "SRD#13" ], + "authors": [ + { + "fn": "M.W. Chase, Jr.", + "givenName": "M.", + "middleName": "W.", + "familyName": "Chase", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Chase-MW" + }, + { + "fn": "C.A. Davies", + "givenName": "C.", + "middleName": "A.", + "familyName": "Davies", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Davies-CA" + }, + { + "fn": "J.R. Downey, Jr.", + "givenName": "J.", + "middleName": "R.", + "familyName": "Downey", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Downey-JR" + }, + { + "fn": "D.J. Frurip", + "givenName": "D.", + "middleName": "J.", + "familyName": "Frurip", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Frurip-DJ" + }, + { + "fn": "R.A. McDonald", + "givenName": "R.", + "familyName": "McDonald", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:McDonald-RA" + }, + { + "fn": "A.N. Syverud", + "givenName": "A.", + "middleName": "N.", + "familyName": "Syverud", + "affiliation": [{ + "@type": [ "org:Organization" ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + }], + "proxyFor": "sdpperson:Syverud-AN" + } + ], + "contactPoint": { + "hasEmail": "mailto:thomas.allison@nist.gov", + "fn": "Thomas Allison", + "address": [ + "Standard Reference Data Program", + "National Institute of Standards and Technology", + "Gaithersburg, MD 20899" + ] + }, + "issued": "1964", + "modified": "2013-01-01", + + + "ediid": "ECBCC1C1301D2ED9E04306570681B10735", + "landingPage": "http://kinetics.nist.gov/janaf/", + + "description": [ + "This Fourth Edition to NIST-JANAF (Joint Army-Navy-Air Force) Thermochemical Tables contains tables of recommended temperature-dependent values for the standard enthalpy of formation Gibbs (free) energy of formation, the logarithm of equilibrium constant of formation, the heat capacity, entropy, enthalpy, and Gibbs energy function for 48 elements and many of their compounds. This publication is a current collection of all tables issued through 1997 under contracts with the U.S. Departement of Energy and the U.S. Air Force Office of Scientific Research, NASA, the JANNAF Combustion Subcommittee, and the SRD Program." + ], + "keyword": [ + "thermochemical tables", + "enthalpy", + "entropy", + "Gibbs free energy", + "equilibrium constant of formation" + ], + "references": [ + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 1 (AL-C", + "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol1-Intro.pdf", + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + ] + }, + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 2 (Cr-Zr)", + "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol2-Intro.pdf", + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + ] + } + ], + "accessLevel": "public", + "license": "http://www.nist.gov/data/license.cfm", + "inventory": [ + { + "forCollection": "", + "childCount": 30, + "descCount": 360, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 16, + "descCount": 318 + }, + { + "forType": "nrdp:DataFile", + "childCount": 16, + "descCount": 318 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 14, + "descCount": 42 + } + ], + "childCollections": [ + "borides", + "boroxins", + "borates", + "boranes", + "aluminum", + "bromides", + "luminates", + "cryolite", + "radon", + "chiolite", + "argon", + "boron", + "barium", + "bromines" + ] + }, + { + "forCollection": "borides", + "childCount": 3, + "descCount": 12, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 0, + "descCount": 9 + }, + { + "forType": "nrdp:DataFile", + "childCount": 0, + "descCount": 9 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [ + "borides/titanium", + "borides/zirconium", + "borides/magnesium" + ] + }, + { + "forCollection": "borides/titanium", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "borides/zirconium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "boroxins", + "childCount": 7, + "descCount": 7, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 7, + "descCount": 7 + }, + { + "forType": "nrdp:DataFile", + "childCount": 7, + "descCount": 7 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates", + "childCount": 6, + "descCount": 46, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 0, + "descCount": 40 + }, + { + "forType": "nrdp:DataFile", + "childCount": 0, + "descCount": 40 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [ + "borates/potassium", + "borates/lithium", + "borates/sodium", + "borates/lead", + "borates/aluminum", + "borates/beryllium" + ] + }, + { + "forCollection": "borates/potassium", + "childCount": 14, + "descCount": 14, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 14, + "descCount": 14 + }, + { + "forType": "nrdp:DataFile", + "childCount": 14, + "descCount": 14 + } + ], + "childCollections": [] + }, + { + "forCollection": "borides/magnesium", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/sodium", + "childCount": 9, + "descCount": 9, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 9, + "descCount": 9 + }, + { + "forType": "nrdp:DataFile", + "childCount": 9, + "descCount": 9 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/lead", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "boranes", + "childCount": 43, + "descCount": 48, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 41, + "descCount": 46 + }, + { + "forType": "nrdp:DataFile", + "childCount": 41, + "descCount": 46 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [ + "boranes/pentaborane", + "boranes/decaborane" + ] + }, + { + "forCollection": "boranes/pentaborane", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "boranes/decaborane", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum", + "childCount": 13, + "descCount": 96, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 86 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 86 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 10, + "descCount": 10 + } + ], + "childCollections": [ + "aluminum/aluminum", + "aluminum/ion", + "aluminum/chloride", + "aluminum/fluoride", + "aluminum/hydride", + "aluminum/hydoxide", + "aluminum/iodide", + "aluminum/oxide", + "aluminum/nitride", + "aluminum/silicate" + ] + }, + { + "forCollection": "aluminum/aluminum", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/ion", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/aluminum", + "childCount": 1, + "descCount": 1, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 1, + "descCount": 1 + }, + { + "forType": "nrdp:DataFile", + "childCount": 1, + "descCount": 1 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides", + "childCount": 24, + "descCount": 62, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 16, + "descCount": 54 + }, + { + "forType": "nrdp:DataFile", + "childCount": 16, + "descCount": 54 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 8, + "descCount": 8 + } + ], + "childCollections": [ + "bromides/aluminum", + "bromides/calcium", + "bromides/potassium", + "bromides/lithium", + "bromides/sodium", + "bromides/iron", + "bromides/mercury", + "bromides/magnesium" + ] + }, + { + "forCollection": "bromides/aluminum", + "childCount": 6, + "descCount": 6, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 6, + "descCount": 6 + }, + { + "forType": "nrdp:DataFile", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/chloride", + "childCount": 17, + "descCount": 17, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 17, + "descCount": 17 + }, + { + "forType": "nrdp:DataFile", + "childCount": 17, + "descCount": 17 + } + ], + "childCollections": [] + }, + { + "forCollection": "luminates", + "childCount": 12, + "descCount": 12, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 12, + "descCount": 12 + }, + { + "forType": "nrdp:DataFile", + "childCount": 12, + "descCount": 12 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/fluoride", + "childCount": 13, + "descCount": 13, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 13, + "descCount": 13 + }, + { + "forType": "nrdp:DataFile", + "childCount": 13, + "descCount": 13 + } + ], + "childCollections": [] + }, + { + "forCollection": "cryolite", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/hydride", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/hydoxide", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/iodide", + "childCount": 6, + "descCount": 6, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 6, + "descCount": 6 + }, + { + "forType": "nrdp:DataFile", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/oxide", + "childCount": 28, + "descCount": 28, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 28, + "descCount": 28 + }, + { + "forType": "nrdp:DataFile", + "childCount": 28, + "descCount": 28 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/nitride", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "radon", + "childCount": 1, + "descCount": 1, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 1, + "descCount": 1 + }, + { + "forType": "nrdp:DataFile", + "childCount": 1, + "descCount": 1 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/silicate", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "chiolite", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "argon", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "boron", + "childCount": 28, + "descCount": 28, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 28, + "descCount": 28 + }, + { + "forType": "nrdp:DataFile", + "childCount": 28, + "descCount": 28 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/beryllium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "barium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/calcium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromines", + "childCount": 7, + "descCount": 7, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 7, + "descCount": 7 + }, + { + "forType": "nrdp:DataFile", + "childCount": 7, + "descCount": 7 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/potassium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/lithium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/sodium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/iron", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/mercury", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/magnesium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + } + ], + "dataHierarchy": [ + { "filepath": "borides", + "children": [ + { "filepath": "borides/titanium", + "children": [ + { "filepath": "borides/titanium/srd13_B-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json" + }, + { "filepath": "borides/titanium/srd13_B-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json" + }, + { "filepath": "borides/titanium/srd13_B-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json" + }, + { "filepath": "borides/titanium/srd13_B-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json" + } + ] + }, + { "filepath": "borides/zirconium", + "children": [ + { "filepath": "borides/zirconium/srd13_B-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json" + }, + { "filepath": "borides/zirconium/srd13_B-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json" + }, + { "filepath": "borides/zirconium/srd13_B-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json" + } + ] + }, + { "filepath": "borides/magnesium", + "children": [ + { "filepath": "borides/magnesium/srd13_B-121.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json" + }, + { "filepath": "borides/magnesium/srd13_B-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json" + } + ] + } + ] + }, + { "filepath": "boroxins", + "children": [ + { "filepath": "boroxins/srd13_B-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json" + }, + { "filepath": "boroxins/srd13_B-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json" + }, + { "filepath": "boroxins/srd13_B-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json" + }, + { "filepath": "boroxins/srd13_B-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json" + }, + { "filepath": "boroxins/srd13_B-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json" + }, + { "filepath": "boroxins/srd13_B-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json" + }, + { "filepath": "boroxins/srd13_B-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json" + } + ] + }, + { "filepath": "srd13_B-113.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json" + }, + { "filepath": "srd13_B-114.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json" + }, + { "filepath": "borates", + "children": [ + { "filepath": "borates/potassium", + "children": [ + { "filepath": "borates/potassium/srd13_B-115.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json" + }, + { "filepath": "borates/potassium/srd13_B-128.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json" + }, + { "filepath": "borates/potassium/srd13_B-132.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json" + }, + { "filepath": "borates/potassium/srd13_B-133.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json" + }, + { "filepath": "borates/potassium/srd13_B-134.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json" + }, + { "filepath": "borates/potassium/srd13_B-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json" + }, + { "filepath": "borates/potassium/srd13_B-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json" + }, + { "filepath": "borates/potassium/srd13_B-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json" + }, + { "filepath": "borates/potassium/srd13_B-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json" + }, + { "filepath": "borates/potassium/srd13_B-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json" + }, + { "filepath": "borates/potassium/srd13_B-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json" + }, + { "filepath": "borates/potassium/srd13_B-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json" + }, + { "filepath": "borates/potassium/srd13_B-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json" + }, + { "filepath": "borates/potassium/srd13_B-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json" + } + ] + }, + { "filepath": "borates/lithium", + "children": [ + { "filepath": "borates/lithium/srd13_B-118.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json" + }, + { "filepath": "borates/lithium/srd13_B-120.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json" + }, + { "filepath": "borates/lithium/srd13_B-129.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json" + }, + { "filepath": "borates/lithium/srd13_B-135.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json" + }, + { "filepath": "borates/lithium/srd13_B-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json" + }, + { "filepath": "borates/lithium/srd13_B-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json" + }, + { "filepath": "borates/lithium/srd13_B-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json" + }, + { "filepath": "borates/lithium/srd13_B-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json" + }, + { "filepath": "borates/lithium/srd13_B-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json" + } + ] + }, + { "filepath": "borates/sodium", + "children": [ + { "filepath": "borates/sodium/srd13_B-122.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json" + }, + { "filepath": "borates/sodium/srd13_B-123.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json" + }, + { "filepath": "borates/sodium/srd13_B-124.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json" + }, + { "filepath": "borates/sodium/srd13_B-130.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json" + }, + { "filepath": "borates/sodium/srd13_B-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json" + }, + { "filepath": "borates/sodium/srd13_B-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json" + }, + { "filepath": "borates/sodium/srd13_B-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json" + }, + { "filepath": "borates/sodium/srd13_B-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json" + }, + { "filepath": "borates/sodium/srd13_B-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json" + } + ] + }, + { "filepath": "borates/lead", + "children": [ + { "filepath": "borates/lead/srd13_B-125.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json" + }, + { "filepath": "borates/lead/srd13_B-131.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json" + }, + { "filepath": "borates/lead/srd13_B-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json" + }, + { "filepath": "borates/lead/srd13_B-140.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json" + } + ] + }, + { "filepath": "borates/aluminum", + "children": [ + { "filepath": "borates/aluminum/srd13_Al-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json" + } + ] + }, + { "filepath": "borates/beryllium", + "children": [ + { "filepath": "borates/beryllium/srd13_B-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json" + }, + { "filepath": "borates/beryllium/srd13_B-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json" + }, + { "filepath": "borates/beryllium/srd13_B-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json" + } + ] + } + ] + }, + { "filepath": "srd13_B-116.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json" + }, + { "filepath": "srd13_B-117.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json" + }, + { "filepath": "srd13_B-119.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json" + }, + { "filepath": "boranes", + "children": [ + { "filepath": "boranes/pentaborane", + "children": [ + { "filepath": "boranes/pentaborane/srd13_B-126.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json" + }, + { "filepath": "boranes/pentaborane/srd13_B-127.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json" + } + ] + }, + { "filepath": "boranes/decaborane", + "children": [ + { "filepath": "boranes/decaborane/srd13_B-136.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json" + }, + { "filepath": "boranes/decaborane/srd13_B-137.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json" + }, + { "filepath": "boranes/decaborane/srd13_B-138.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json" + } + ] + }, + { "filepath": "boranes/srd13_B-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json" + }, + { "filepath": "boranes/srd13_B-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json" + }, + { "filepath": "boranes/srd13_B-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json" + }, + { "filepath": "boranes/srd13_B-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json" + }, + { "filepath": "boranes/srd13_B-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json" + }, + { "filepath": "boranes/srd13_B-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json" + }, + { "filepath": "boranes/srd13_B-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json" + }, + { "filepath": "boranes/srd13_B-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json" + }, + { "filepath": "boranes/srd13_B-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json" + }, + { "filepath": "boranes/srd13_B-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json" + }, + { "filepath": "boranes/srd13_B-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json" + }, + { "filepath": "boranes/srd13_B-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json" + }, + { "filepath": "boranes/srd13_B-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json" + }, + { "filepath": "boranes/srd13_B-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json" + }, + { "filepath": "boranes/srd13_B-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json" + }, + { "filepath": "boranes/srd13_B-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json" + }, + { "filepath": "boranes/srd13_B-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json" + }, + { "filepath": "boranes/srd13_B-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json" + }, + { "filepath": "boranes/srd13_B-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json" + }, + { "filepath": "boranes/srd13_B-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json" + }, + { "filepath": "boranes/srd13_B-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json" + }, + { "filepath": "boranes/srd13_B-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json" + }, + { "filepath": "boranes/srd13_B-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json" + }, + { "filepath": "boranes/srd13_B-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json" + }, + { "filepath": "boranes/srd13_B-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json" + }, + { "filepath": "boranes/srd13_B-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json" + }, + { "filepath": "boranes/srd13_B-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json" + }, + { "filepath": "boranes/srd13_B-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json" + }, + { "filepath": "boranes/srd13_B-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json" + }, + { "filepath": "boranes/srd13_B-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json" + }, + { "filepath": "boranes/srd13_B-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json" + }, + { "filepath": "boranes/srd13_B-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json" + }, + { "filepath": "boranes/srd13_B-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json" + }, + { "filepath": "boranes/srd13_B-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json" + }, + { "filepath": "boranes/srd13_B-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json" + }, + { "filepath": "boranes/srd13_B-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json" + }, + { "filepath": "boranes/srd13_B-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json" + }, + { "filepath": "boranes/srd13_B-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json" + }, + { "filepath": "boranes/srd13_B-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json" + }, + { "filepath": "boranes/srd13_B-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json" + }, + { "filepath": "boranes/srd13_B-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json" + } + ] + }, + { "filepath": "srd13_B-139.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json" + }, + { "filepath": "srd13_janaf-zipfile.zip", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip" + }, + { "filepath": "srd13_janaf.species.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf.species.json" + }, + { "filepath": "aluminum", + "children": [ + { "filepath": "aluminum/aluminum", + "children": [ + { "filepath": "aluminum/aluminum/srd13_Al-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json" + }, + { "filepath": "aluminum/aluminum/srd13_Al-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json" + }, + { "filepath": "aluminum/aluminum/srd13_Al-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json" + }, + { "filepath": "aluminum/aluminum/srd13_Al-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json" + }, + { "filepath": "aluminum/aluminum/srd13_Al-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json" + } + ] + }, + { "filepath": "aluminum/ion", + "children": [ + { "filepath": "aluminum/ion/srd13_Al-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json" + }, + { "filepath": "aluminum/ion/srd13_Al-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json" + } + ] + }, + { "filepath": "aluminum/chloride", + "children": [ + { "filepath": "aluminum/chloride/srd13_Al-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json" + }, + { "filepath": "aluminum/chloride/srd13_Al-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json" + } + ] + }, + { "filepath": "aluminum/fluoride", + "children": [ + { "filepath": "aluminum/fluoride/srd13_Al-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json" + }, + { "filepath": "aluminum/fluoride/srd13_Al-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json" + } + ] + }, + { "filepath": "aluminum/hydride", + "children": [ + { "filepath": "aluminum/hydride/srd13_Al-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json" + }, + { "filepath": "aluminum/hydride/srd13_Al-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json" + } + ] + }, + { "filepath": "aluminum/hydoxide", + "children": [ + { "filepath": "aluminum/hydoxide/srd13_Al-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json" + }, + { "filepath": "aluminum/hydoxide/srd13_Al-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json" + }, + { "filepath": "aluminum/hydoxide/srd13_Al-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json" + }, + { "filepath": "aluminum/hydoxide/srd13_Al-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json" + } + ] + }, + { "filepath": "aluminum/iodide", + "children": [ + { "filepath": "aluminum/iodide/srd13_Al-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json" + }, + { "filepath": "aluminum/iodide/srd13_Al-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json" + }, + { "filepath": "aluminum/iodide/srd13_Al-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json" + }, + { "filepath": "aluminum/iodide/srd13_Al-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json" + }, + { "filepath": "aluminum/iodide/srd13_Al-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json" + }, + { "filepath": "aluminum/iodide/srd13_Al-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json" + } + ] + }, + { "filepath": "aluminum/oxide", + "children": [ + { "filepath": "aluminum/oxide/srd13_Al-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json" + }, + { "filepath": "aluminum/oxide/srd13_Al-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json" + } + ] + }, + { "filepath": "aluminum/nitride", + "children": [ + { "filepath": "aluminum/nitride/srd13_Al-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json" + }, + { "filepath": "aluminum/nitride/srd13_Al-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json" + } + ] + }, + { "filepath": "aluminum/srd13_Al-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json" + }, + { "filepath": "aluminum/srd13_Al-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json" + }, + { "filepath": "aluminum/silicate", + "children": [ + { "filepath": "aluminum/silicate/srd13_Al-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json" + }, + { "filepath": "aluminum/silicate/srd13_Al-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json" + }, + { "filepath": "aluminum/silicate/srd13_Al-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json" + }, + { "filepath": "aluminum/silicate/srd13_Al-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json" + } + ] + }, + { "filepath": "aluminum/srd13_Al-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json" + } + ] + }, + { "filepath": "bromides", + "children": [ + { "filepath": "bromides/aluminum", + "children": [ + { "filepath": "bromides/aluminum/srd13_Al-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json" + }, + { "filepath": "bromides/aluminum/srd13_Al-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json" + }, + { "filepath": "bromides/aluminum/srd13_Al-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json" + }, + { "filepath": "bromides/aluminum/srd13_Al-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json" + }, + { "filepath": "bromides/aluminum/srd13_Al-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json" + }, + { "filepath": "bromides/aluminum/srd13_Al-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json" + } + ] + }, + { "filepath": "bromides/srd13_B-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json" + }, + { "filepath": "bromides/calcium", + "children": [ + { "filepath": "bromides/calcium/srd13_Br-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json" + }, + { "filepath": "bromides/calcium/srd13_Br-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json" + }, + { "filepath": "bromides/calcium/srd13_Br-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json" + }, + { "filepath": "bromides/calcium/srd13_Br-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json" + }, + { "filepath": "bromides/calcium/srd13_Br-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json" + } + ] + }, + { "filepath": "bromides/srd13_Br-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json" + }, + { "filepath": "bromides/srd13_Br-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json" + }, + { "filepath": "bromides/srd13_Br-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json" + }, + { "filepath": "bromides/srd13_Br-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json" + }, + { "filepath": "bromides/srd13_Br-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json" + }, + { "filepath": "bromides/potassium", + "children": [ + { "filepath": "bromides/potassium/srd13_Br-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json" + }, + { "filepath": "bromides/potassium/srd13_Br-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json" + }, + { "filepath": "bromides/potassium/srd13_Br-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json" + }, + { "filepath": "bromides/potassium/srd13_Br-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json" + }, + { "filepath": "bromides/potassium/srd13_Br-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json" + } + ] + }, + { "filepath": "bromides/lithium", + "children": [ + { "filepath": "bromides/lithium/srd13_Br-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json" + }, + { "filepath": "bromides/lithium/srd13_Br-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json" + }, + { "filepath": "bromides/lithium/srd13_Br-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json" + }, + { "filepath": "bromides/lithium/srd13_Br-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json" + }, + { "filepath": "bromides/lithium/srd13_Br-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json" + } + ] + }, + { "filepath": "bromides/srd13_Br-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json" + }, + { "filepath": "bromides/srd13_Br-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json" + }, + { "filepath": "bromides/srd13_Br-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json" + }, + { "filepath": "bromides/srd13_Br-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json" + }, + { "filepath": "bromides/sodium", + "children": [ + { "filepath": "bromides/sodium/srd13_Br-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json" + }, + { "filepath": "bromides/sodium/srd13_Br-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json" + }, + { "filepath": "bromides/sodium/srd13_Br-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json" + } + ] + }, + { "filepath": "bromides/srd13_Br-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json" + }, + { "filepath": "bromides/srd13_Br-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json" + }, + { "filepath": "bromides/srd13_Br-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json" + }, + { "filepath": "bromides/srd13_Br-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json" + }, + { "filepath": "bromides/srd13_Br-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json" + }, + { "filepath": "bromides/srd13_Br-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json" + }, + { "filepath": "bromides/iron", + "children": [ + { "filepath": "bromides/iron/srd13_Br-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json" + }, + { "filepath": "bromides/iron/srd13_Br-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json" + }, + { "filepath": "bromides/iron/srd13_Br-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json" + }, + { "filepath": "bromides/iron/srd13_Br-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json" + } + ] + }, + { "filepath": "bromides/mercury", + "children": [ + { "filepath": "bromides/mercury/srd13_Br-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json" + }, + { "filepath": "bromides/mercury/srd13_Br-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json" + }, + { "filepath": "bromides/mercury/srd13_Br-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json" + }, + { "filepath": "bromides/mercury/srd13_Br-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json" + }, + { "filepath": "bromides/mercury/srd13_Br-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json" + } + ] + }, + { "filepath": "bromides/magnesium", + "children": [ + { "filepath": "bromides/magnesium/srd13_Br-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json" + }, + { "filepath": "bromides/magnesium/srd13_Br-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json" + }, + { "filepath": "bromides/magnesium/srd13_Br-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json" + }, + { "filepath": "bromides/magnesium/srd13_Br-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json" + }, + { "filepath": "bromides/magnesium/srd13_Br-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json" + } + ] + } + ] + }, + { "filepath": "luminates", + "children": [ + { "filepath": "luminates/srd13_Al-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json" + }, + { "filepath": "luminates/srd13_Al-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json" + }, + { "filepath": "luminates/srd13_Al-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json" + }, + { "filepath": "luminates/srd13_Al-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json" + }, + { "filepath": "luminates/srd13_Al-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json" + }, + { "filepath": "luminates/srd13_Al-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json" + }, + { "filepath": "luminates/srd13_Al-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json" + }, + { "filepath": "luminates/srd13_Al-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json" + }, + { "filepath": "luminates/srd13_Al-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json" + }, + { "filepath": "luminates/srd13_Al-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json" + }, + { "filepath": "luminates/srd13_Al-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json" + }, + { "filepath": "luminates/srd13_Al-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json" + } + ] + }, + { "filepath": "cryolite", + "children": [ + { "filepath": "cryolite/srd13_Al-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json" + }, + { "filepath": "cryolite/srd13_Al-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json" + }, + { "filepath": "cryolite/srd13_Al-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json" + }, + { "filepath": "cryolite/srd13_Al-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json" + } + ] + }, + { "filepath": "radon", + "children": [ + { "filepath": "radon/srd13_Rn-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json" + } + ] + }, + { "filepath": "chiolite", + "children": [ + { "filepath": "chiolite/srd13_Al-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json" + }, + { "filepath": "chiolite/srd13_Al-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json" + }, + { "filepath": "chiolite/srd13_Al-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json" + } + ] + }, + { "filepath": "argon", + "children": [ + { "filepath": "argon/srd13_Ar-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json" + }, + { "filepath": "argon/srd13_Ar-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json" + } + ] + }, + { "filepath": "boron", + "children": [ + { "filepath": "boron/srd13_B-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json" + }, + { "filepath": "boron/srd13_B-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json" + }, + { "filepath": "boron/srd13_B-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json" + }, + { "filepath": "boron/srd13_B-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json" + }, + { "filepath": "boron/srd13_B-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json" + }, + { "filepath": "boron/srd13_B-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json" + }, + { "filepath": "boron/srd13_B-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json" + }, + { "filepath": "boron/srd13_B-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json" + }, + { "filepath": "boron/srd13_B-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json" + }, + { "filepath": "boron/srd13_B-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json" + }, + { "filepath": "boron/srd13_B-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json" + }, + { "filepath": "boron/srd13_B-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json" + }, + { "filepath": "boron/srd13_B-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json" + }, + { "filepath": "boron/srd13_B-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json" + }, + { "filepath": "boron/srd13_B-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json" + }, + { "filepath": "boron/srd13_B-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json" + }, + { "filepath": "boron/srd13_B-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json" + }, + { "filepath": "boron/srd13_B-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json" + }, + { "filepath": "boron/srd13_B-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json" + }, + { "filepath": "boron/srd13_B-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json" + }, + { "filepath": "boron/srd13_B-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json" + }, + { "filepath": "boron/srd13_B-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json" + }, + { "filepath": "boron/srd13_B-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json" + }, + { "filepath": "boron/srd13_B-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json" + }, + { "filepath": "boron/srd13_B-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json" + }, + { "filepath": "boron/srd13_B-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json" + }, + { "filepath": "boron/srd13_B-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json" + }, + { "filepath": "boron/srd13_B-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json" + } + ] + }, + { "filepath": "srd13_B-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json" + }, + { "filepath": "srd13_B-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json" + }, + { "filepath": "srd13_B-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json" + }, + { "filepath": "srd13_B-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json" + }, + { "filepath": "barium", + "children": [ + { "filepath": "barium/srd13_Ba-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json" + }, + { "filepath": "barium/srd13_Ba-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json" + }, + { "filepath": "barium/srd13_Ba-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json" + } + ] + }, + { "filepath": "bromines", + "children": [ + { "filepath": "bromines/srd13_Br-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json" + }, + { "filepath": "bromines/srd13_Br-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json" + }, + { "filepath": "bromines/srd13_Br-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json" + }, + { "filepath": "bromines/srd13_Br-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json" + }, + { "filepath": "bromines/srd13_Br-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json" + }, + { "filepath": "bromines/srd13_Br-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json" + }, + { "filepath": "bromines/srd13_Br-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json" + } + ] + }, + { "filepath": "srd13_Br-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json" + }, + { "filepath": "srd13_Br-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json" + }, + { "filepath": "srd13_Br-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json" + }, + { "filepath": "srd13_Br-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json" + } + ], + "components": [ + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borides", + "title": "Metal Borides" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borides/titanium", + "title": "Titanium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-102" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-101" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borides/zirconium", + "title": "Zirconium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/zirconium/srd13_B-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-103", + "description": "Zirconium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/zirconium/srd13_B-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-104", + "description": "Zirconium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/zirconium/srd13_B-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-105", + "description": "Zirconium Boride" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "boroxins", + "title": "Boroxins" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trichloroboroxin", + "title": "B-106" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Fluoroboroxin", + "title": "B-107" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Difluoroboroxin", + "title": "B-108" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Trifluoroboroxin", + "title": "B-109" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trifluoroboroxin", + "title": "B-110" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boroxin", + "title": "B-111" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boroxin", + "title": "B-111" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-113.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-113" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-114.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borazine", + "title": "B-114" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates", + "title": "Borates" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates/potassium", + "title": "Potassium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-115.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-115" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-116.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-116" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-117.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-117" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates/lithium", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-118.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-118" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-119.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-120.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-120" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borides/magnesium", + "title": "Magnesium Boride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/magnesium/srd13_B-121.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Boride", + "title": "B-121" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates/sodium", + "title": "Sodium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-122.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-122" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-123.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-123" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-124.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-124" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates/lead", + "title": "Lead Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-125.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-125" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "boranes", + "title": "Boranes" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "boranes/pentaborane", + "title": "Pentaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/pentaborane/srd13_B-126.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Pentaborane", + "title": "B-126" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/pentaborane/srd13_B-127.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Pentaborane", + "title": "B-127" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-128.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-128" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-129.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-129" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-130.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-130" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-131.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-131" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-132.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-132" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-133.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-133" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-134.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-134" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-135.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-135" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "boranes/decaborane", + "title": "Decaaborane" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/decaborane/srd13_B-136.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-136" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/decaborane/srd13_B-137.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-137" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/decaborane/srd13_B-138.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-138" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-139.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-139" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_janaf-zipfile.zip", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip", + "mediaType": "application/zip", + "description": "A zipped file of all 1,799 JANAF species, index, and definition files.", + "title": "Compressed folder of all JANAF files" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + + "filepath": "srd13_janaf.species.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf.species.json", + "mediaType": "application/json", + "description": "An index file containing metadata for each of the species, including chemical name, data file name, CAS Number (Chemical Abstracts Registry Number), molecular formula (in Hill-sorted order), and state (or phase).", + "title": "JANAF Species Index" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum", + "title": "Aluminum and Aluminum compounds" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/aluminum", + "title": "Aluminum" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-001" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-002" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-003" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-004" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-005" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/ion", + "title": "Aluminum, Ion" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/ion/srd13_Al-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum, Ion", + "title": "Al-006" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/ion/srd13_Al-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum, Ion", + "title": "Al-007" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates/aluminum", + "title": "Aluminum Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/aluminum/srd13_Al-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Borate", + "title": "Al-008" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides", + "title": "Bromides" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/aluminum", + "title": "Aluminum Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-009" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-010" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-011" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-012" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-013" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/chloride", + "title": "Aluminum Chloride compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-014" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride, Ion", + "title": "Al-015" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride", + "title": "Al-016" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride, Ion", + "title": "Al-017" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride", + "title": "Al-018" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Oxide", + "title": "Al-019" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Oxide", + "title": "Al-020" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-021" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride, Ion", + "title": "Al-022" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride, Ion", + "title": "Al-023" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride", + "title": "Al-024" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-025" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-026" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-027" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-028" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "luminates", + "title": "Luminate compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrachloroaluminate", + "title": "Al-029" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Tetrachloroaluminate", + "title": "Al-030" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Hexachloroaluminate", + "title": "Al-031" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Hexachloroaluminate", + "title": "Al-032" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/fluoride", + "title": "Aluminum Fluoride compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-033" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride, Ion", + "title": "Al-034" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride Oxide", + "title": "Al-035" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-036" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride, Ion", + "title": "Al-037" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride, Ion", + "title": "Al-038" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride Oxide", + "title": "Al-039" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride Oxide, Ion", + "title": "Al-040" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-041" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-017" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-043" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-044" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tetrafluoroaluminate, Ion", + "title": "Al-045" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Tetrafluoroaluminate", + "title": "Al-046" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Tetrafluoroaluminate", + "title": "Al-047" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Hexafluoraluminate", + "title": "Al-048" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Hexafluoroaluminate", + "title": "Al-049" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Hexafluoroaluminate", + "title": "Al-050" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Hexafluoroaluminate", + "title": "Al-051" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "cryolite", + "title": "Cryolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite, Alpha", + "title": "Al-052" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite, Beta", + "title": "Al-053" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite", + "title": "Al-054" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite", + "title": "Al-055" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/hydride", + "title": "Aluminum Hydride compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/hydride/srd13_Al-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydride", + "title": "Al-056" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/hydride/srd13_Al-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydride Oxide", + "title": "Al-057" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/hydoxide", + "title": "Aluminum Hydroxide compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide", + "title": "Al-058" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide, Ion", + "title": "Al-059" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide, Ion", + "title": "Al-060" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide Oxide", + "title": "Al-061" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Tetrahydroaluminate", + "title": "Al-062" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/iodide", + "title": "Aluminum Iodide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-063" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-064" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-065" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-066" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-067" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/oxide", + "title": "Aluminum Oxide compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Aluminum Oxide", + "title": "Al-068" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Aluminum Oxide", + "title": "Al-069" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Aluminum Oxide", + "title": "Al-070" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/nitride", + "title": "Aluminum Nitride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/nitride/srd13_Al-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Nitride", + "title": "Al-071" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/nitride/srd13_Al-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Nitride", + "title": "Al-072" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Aluminum Oxide", + "title": "Al-073" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-074" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-075" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-076" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-017" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-078" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/srd13_Al-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Sulfide", + "title": "Al-079" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/srd13_Al-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-080" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-081" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-082" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-083" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-084" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-085" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "radon", + "title": "Radon" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "radon/srd13_Rn-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Radon, Ion", + "title": "Rn-002" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Aluminum Chloride", + "title": "Al-086" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-088" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Aluminum Oxide", + "title": "Al-089" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Aluminum Oxide", + "title": "Al-090" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Aluminum Oxide", + "title": "Al-091" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-092" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-093" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-094" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-095" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Alpha", + "title": "Al-096" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Delta", + "title": "Al-097" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Gamma", + "title": "Al-098" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Kappa", + "title": "Al-099" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-100" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-101" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "aluminum/silicate", + "title": "Aluminum Silicate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Andalusite", + "title": "Al-102" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Kyanite", + "title": "Al-103" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Sillimanite", + "title": "Al-104" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/srd13_Al-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Sulfide", + "title": "Al-105" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "chiolite", + "title": "Chiolite" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "chiolite/srd13_Al-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chiolite", + "title": "Al-106" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "chiolite/srd13_Al-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chiolite", + "title": "Al-107" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "chiolite/srd13_Al-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chiolite", + "title": "Al-108" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-109" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-110" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-111" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Mullite", + "title": "Al-112" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "argon", + "title": "Argon" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "argon/srd13_Ar-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Argon", + "title": "Ar-001" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "argon/srd13_Ar-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Argon, Ion", + "title": "Ar-002" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "boron", + "title": "Boron and Boron compounds" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-001" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron, Beta-Rhombohedral", + "title": "B-002" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-003" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-004" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-005" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron, Ion", + "title": "B-006" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron, Ion", + "title": "B-007" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "borates/beryllium", + "title": "Beryllium Borate" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/beryllium/srd13_B-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Borate", + "title": "B-008" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromoborane", + "title": "B-009" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromochloroborane", + "title": "B-010" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromodichloroborane", + "title": "B-011" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromofluoroborane", + "title": "B-012" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromodifluoroborane", + "title": "B-013" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_B-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Bromide Oxide", + "title": "B-014" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromoborane", + "title": "B-015" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromochloroborane", + "title": "B-016" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromofluoroborane", + "title": "B-017" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromoborane", + "title": "B-018" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tribromoborane", + "title": "B-019" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tribromoborane", + "title": "B-020" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chloroborane", + "title": "B-021" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chloroborane, Ion", + "title": "B-022" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chlorofluoroborane", + "title": "B-023" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chlorodifluoroborane", + "title": "B-024" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Chloride Oxide", + "title": "B-025" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane", + "title": "B-026" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane, Ion", + "title": "B-027" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane, Ion", + "title": "B-028" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichlorofluoroborane", + "title": "B-029" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane", + "title": "B-030" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trichloroborane", + "title": "B-031" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Fluoroborane", + "title": "B-032" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Fluoride Oxide", + "title": "B-033" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane", + "title": "B-034" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane, Ion", + "title": "B-035" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane, Ion", + "title": "B-036" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane", + "title": "B-037" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluorohydroxyborane", + "title": "B-038" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Fluoride Oxide", + "title": "B-039" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trifluoroborane", + "title": "B-040" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-041" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-042" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-043" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-044" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borane", + "title": "B-045" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Oxide", + "title": "B-046" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Oxide, Ion", + "title": "B-047" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Oxide, Ion", + "title": "B-048" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-049" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-050" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Sulfide", + "title": "B-051" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Sulfide, Ion", + "title": "B-052" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borane", + "title": "B-053" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dihydroxyborane", + "title": "B-054" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borane", + "title": "B-055" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-056" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_B-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-057" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrahydroborate", + "title": "B-058" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Tetrahydroborate", + "title": "B-059" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Tetrahydroborate", + "title": "B-060" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iodoborane", + "title": "B-061" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Diiodoborane", + "title": "B-062" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Triiodoborane", + "title": "B-063" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-064" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-065" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-066" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-067" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-068" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-069" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-070" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-071" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Nitride", + "title": "B-072" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Nitride", + "title": "B-073" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-074" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-075" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-076" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-077" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-078" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-079" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide, Ion", + "title": "B-080" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Sulfide", + "title": "B-081" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Titanium Boride", + "title": "B-082" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-083" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/beryllium/srd13_B-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Borate", + "title": "B-084" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/beryllium/srd13_B-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Borate", + "title": "B-085" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane", + "title": "B-086" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane", + "title": "B-087" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane Oxide", + "title": "B-088" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dihydroxyborane", + "title": "B-089" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dihydroxyborane", + "title": "B-090" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Diborane", + "title": "B-091" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/magnesium/srd13_B-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Boride", + "title": "B-092" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-093" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-094" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-095" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-096" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-097" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-098" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-099" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Titanium Boride", + "title": "B-100" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-140.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-140" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "barium", + "title": "Barium" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "barium/srd13_Ba-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Barium", + "title": "Ba-001" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "barium/srd13_Ba-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Barium", + "title": "Ba-002" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "barium/srd13_Ba-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Barium", + "title": "Ba-003" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/calcium", + "title": "Calcium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-004" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromines", + "title": "Bromimes" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Chloride", + "title": "Br-005" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Fluoride", + "title": "Br-006" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Fluoride", + "title": "Br-007" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Fluoride", + "title": "Br-008" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sulfur Bromide Fluoride", + "title": "Br-009" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Hydrogen Bromide", + "title": "Br-010" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromosilane", + "title": "Br-011" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Ammonium Bromide", + "title": "Br-012" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-013" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iodine Bromide", + "title": "Br-014" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/potassium", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-016" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-017" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-018" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/lithium", + "title": "Lithium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-019" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-020" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-021" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-022" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-023" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Molybdenum Bromide", + "title": "Br-024" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromoimidogen", + "title": "Br-025" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Nitrosyl Bromide", + "title": "Br-026" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-027" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/sodium", + "title": "Sodium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/sodium/srd13_Br-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-028" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/sodium/srd13_Br-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-029" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/sodium/srd13_Br-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-030" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Phosphorus Bromide", + "title": "Br-031" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Bromide", + "title": "Br-032" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromosilylidyne", + "title": "Br-033" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Strontium Bromide", + "title": "Br-034" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Titanium Bromide", + "title": "Br-035" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tungsten Bromide", + "title": "Br-036" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Zirconium Bromide", + "title": "Br-037" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine", + "title": "Br-038" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine", + "title": "Br-039" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine", + "title": "Br-040" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-041" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-042" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-043" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-044" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/iron", + "title": "Iron Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-045" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-046" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-047" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-048" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "srd13_Br-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromosilane", + "title": "Br-049" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/mercury", + "title": "Mercury Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-050" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-051" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-052" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-053" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-054" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-055" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-056" + }, + { + "@type": [ "nrdp:Subcollection" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + ], + "filepath": "bromides/magnesium", + "title": "Magnesium Bromide" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-057" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-058" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-059" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-060" + }, + { + "@type": [ "nrdp:DataFile", "dcat:Distribution" ], + "_extensionSchemas": [ + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide, Ion", + "title": "Br-061" + } + ], + "publisher": { + "@type": "org:Organization", + "name": "National Institute of Standards and Technology" + }, + "language": [ "en" ], + "bureauCode": [ + "006:55" + ], + "programCode": [ + "006:052" + ] +} diff --git a/model/examples/janaf-hier.json b/model/examples/janaf-hier.json index be4a61a..f3af4dc 100644 --- a/model/examples/janaf-hier.json +++ b/model/examples/janaf-hier.json @@ -1,7 +1,7 @@ { "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", - "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataPublication" ], "@type": [ "nrd:SRD", "nrdp:DataPublication", "nrdp:PublicDataResource" ], "@id": "ark:/88434/pdr02d4t", @@ -114,7 +114,7 @@ "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 1 (AL-C", "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol1-Intro.pdf", "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ] }, { @@ -123,7 +123,7 @@ "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 2 (Cr-Zr)", "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol2-Intro.pdf", "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ] } ], @@ -2116,7 +2116,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borides", "title": "Metal Borides" @@ -2124,7 +2124,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borides/titanium", "title": "Titanium Boride" @@ -2132,7 +2132,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/titanium/srd13_B-102.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json", @@ -2143,7 +2143,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/titanium/srd13_B-101.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json", @@ -2154,7 +2154,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borides/zirconium", "title": "Zirconium Boride" @@ -2162,7 +2162,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/zirconium/srd13_B-103.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json", @@ -2174,7 +2174,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/zirconium/srd13_B-104.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json", @@ -2186,7 +2186,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/zirconium/srd13_B-105.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json", @@ -2198,7 +2198,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "boroxins", "title": "Boroxins" @@ -2206,7 +2206,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-106.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json", @@ -2218,7 +2218,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-107.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json", @@ -2230,7 +2230,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-108.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json", @@ -2242,7 +2242,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-109.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json", @@ -2254,7 +2254,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-110.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json", @@ -2266,7 +2266,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-111.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json", @@ -2278,7 +2278,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boroxins/srd13_B-112.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json", @@ -2290,7 +2290,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-113.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json", @@ -2302,7 +2302,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-114.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json", @@ -2314,7 +2314,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates", "title": "Borates" @@ -2322,7 +2322,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates/potassium", "title": "Potassium Borate" @@ -2330,7 +2330,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-115.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json", @@ -2342,7 +2342,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-116.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json", @@ -2354,7 +2354,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-117.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json", @@ -2366,7 +2366,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates/lithium", "title": "Lithium Borate" @@ -2374,7 +2374,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-118.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json", @@ -2386,7 +2386,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-119.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json", @@ -2397,7 +2397,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-120.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json", @@ -2409,7 +2409,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borides/magnesium", "title": "Magnesium Boride" @@ -2417,7 +2417,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/magnesium/srd13_B-121.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json", @@ -2429,7 +2429,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates/sodium", "title": "Sodium Borate" @@ -2437,7 +2437,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-122.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json", @@ -2449,7 +2449,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-123.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json", @@ -2461,7 +2461,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-124.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json", @@ -2473,7 +2473,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates/lead", "title": "Lead Borate" @@ -2481,7 +2481,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lead/srd13_B-125.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json", @@ -2493,7 +2493,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "boranes", "title": "Boranes" @@ -2501,7 +2501,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "boranes/pentaborane", "title": "Pentaborane" @@ -2509,7 +2509,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/pentaborane/srd13_B-126.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json", @@ -2521,7 +2521,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/pentaborane/srd13_B-127.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json", @@ -2533,7 +2533,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-128.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json", @@ -2545,7 +2545,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-129.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json", @@ -2557,7 +2557,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-130.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json", @@ -2569,7 +2569,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lead/srd13_B-131.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json", @@ -2581,7 +2581,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-132.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json", @@ -2593,7 +2593,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-133.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json", @@ -2605,7 +2605,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-134.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json", @@ -2617,7 +2617,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-135.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json", @@ -2629,7 +2629,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "boranes/decaborane", "title": "Decaaborane" @@ -2637,7 +2637,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/decaborane/srd13_B-136.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json", @@ -2649,7 +2649,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/decaborane/srd13_B-137.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json", @@ -2661,7 +2661,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/decaborane/srd13_B-138.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json", @@ -2673,7 +2673,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-139.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json", @@ -2685,7 +2685,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_janaf-zipfile.zip", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip", @@ -2696,7 +2696,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_janaf.species.json", @@ -2708,7 +2708,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum", "title": "Aluminum and Aluminum compounds" @@ -2716,7 +2716,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/aluminum", "title": "Aluminum" @@ -2724,7 +2724,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/aluminum/srd13_Al-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json", @@ -2736,7 +2736,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/aluminum/srd13_Al-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json", @@ -2748,7 +2748,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/aluminum/srd13_Al-003.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json", @@ -2760,7 +2760,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/aluminum/srd13_Al-004.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json", @@ -2772,7 +2772,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/aluminum/srd13_Al-005.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json", @@ -2784,7 +2784,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/ion", "title": "Aluminum, Ion" @@ -2792,7 +2792,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/ion/srd13_Al-006.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json", @@ -2804,7 +2804,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/ion/srd13_Al-007.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json", @@ -2816,7 +2816,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates/aluminum", "title": "Aluminum Borate" @@ -2824,7 +2824,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/aluminum/srd13_Al-008.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json", @@ -2836,7 +2836,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides", "title": "Bromides" @@ -2844,7 +2844,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/aluminum", "title": "Aluminum Bromide" @@ -2852,7 +2852,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/aluminum/srd13_Al-009.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json", @@ -2864,7 +2864,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/aluminum/srd13_Al-010.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json", @@ -2876,7 +2876,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/aluminum/srd13_Al-011.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json", @@ -2888,7 +2888,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/aluminum/srd13_Al-012.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json", @@ -2900,7 +2900,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/aluminum/srd13_Al-013.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json", @@ -2912,7 +2912,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/chloride", "title": "Aluminum Chloride compounds" @@ -2920,7 +2920,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-014.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json", @@ -2932,7 +2932,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-015.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json", @@ -2944,7 +2944,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-016.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json", @@ -2956,7 +2956,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-017.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json", @@ -2968,7 +2968,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-018.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json", @@ -2980,7 +2980,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-019.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json", @@ -2992,7 +2992,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-020.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json", @@ -3004,7 +3004,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-021.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json", @@ -3016,7 +3016,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-022.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json", @@ -3028,7 +3028,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-023.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json", @@ -3040,7 +3040,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-024.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json", @@ -3052,7 +3052,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-025.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json", @@ -3064,7 +3064,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-026.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json", @@ -3076,7 +3076,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-027.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json", @@ -3088,7 +3088,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-028.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json", @@ -3100,7 +3100,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "luminates", "title": "Luminate compounds" @@ -3108,7 +3108,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-029.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json", @@ -3120,7 +3120,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-030.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json", @@ -3132,7 +3132,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-031.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json", @@ -3144,7 +3144,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-032.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json", @@ -3156,7 +3156,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/fluoride", "title": "Aluminum Fluoride compounds" @@ -3164,7 +3164,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-033.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json", @@ -3176,7 +3176,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-034.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json", @@ -3188,7 +3188,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-035.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json", @@ -3200,7 +3200,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-036.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json", @@ -3212,7 +3212,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-037.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json", @@ -3224,7 +3224,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-038.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json", @@ -3236,7 +3236,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-039.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json", @@ -3248,7 +3248,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-040.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json", @@ -3260,7 +3260,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-041.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json", @@ -3272,7 +3272,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-042.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json", @@ -3284,7 +3284,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-043.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json", @@ -3296,7 +3296,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-044.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json", @@ -3308,7 +3308,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-045.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json", @@ -3320,7 +3320,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-046.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json", @@ -3332,7 +3332,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-047.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json", @@ -3344,7 +3344,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-048.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json", @@ -3356,7 +3356,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-049.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json", @@ -3368,7 +3368,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-050.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json", @@ -3380,7 +3380,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-051.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json", @@ -3392,7 +3392,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "cryolite", "title": "Cryolite" @@ -3400,7 +3400,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "cryolite/srd13_Al-052.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json", @@ -3412,7 +3412,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "cryolite/srd13_Al-053.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json", @@ -3424,7 +3424,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "cryolite/srd13_Al-054.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json", @@ -3436,7 +3436,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "cryolite/srd13_Al-055.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json", @@ -3448,7 +3448,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/hydride", "title": "Aluminum Hydride compounds" @@ -3456,7 +3456,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/hydride/srd13_Al-056.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json", @@ -3468,7 +3468,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/hydride/srd13_Al-057.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json", @@ -3480,7 +3480,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/hydoxide", "title": "Aluminum Hydroxide compounds" @@ -3488,7 +3488,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/hydoxide/srd13_Al-058.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json", @@ -3500,7 +3500,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/hydoxide/srd13_Al-059.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json", @@ -3512,7 +3512,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/hydoxide/srd13_Al-060.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json", @@ -3524,7 +3524,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/hydoxide/srd13_Al-061.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json", @@ -3536,7 +3536,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "luminates/srd13_Al-062.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json", @@ -3548,7 +3548,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/iodide", "title": "Aluminum Iodide" @@ -3556,7 +3556,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/iodide/srd13_Al-063.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json", @@ -3568,7 +3568,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/iodide/srd13_Al-064.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json", @@ -3580,7 +3580,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/iodide/srd13_Al-065.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json", @@ -3592,7 +3592,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/iodide/srd13_Al-066.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json", @@ -3604,7 +3604,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/iodide/srd13_Al-067.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json", @@ -3616,7 +3616,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/oxide", "title": "Aluminum Oxide compounds" @@ -3624,7 +3624,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-068.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json", @@ -3636,7 +3636,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-069.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json", @@ -3648,7 +3648,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-070.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json", @@ -3660,7 +3660,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/nitride", "title": "Aluminum Nitride" @@ -3668,7 +3668,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/nitride/srd13_Al-071.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json", @@ -3680,7 +3680,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/nitride/srd13_Al-072.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json", @@ -3692,7 +3692,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-073.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json", @@ -3704,7 +3704,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-074.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json", @@ -3716,7 +3716,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-075.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json", @@ -3728,7 +3728,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-076.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json", @@ -3740,7 +3740,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-077.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json", @@ -3752,7 +3752,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-078.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json", @@ -3764,7 +3764,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/srd13_Al-079.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json", @@ -3776,7 +3776,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/srd13_Al-080.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json", @@ -3788,7 +3788,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-081.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json", @@ -3800,7 +3800,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-082.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json", @@ -3812,7 +3812,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-083.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json", @@ -3824,7 +3824,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/aluminum/srd13_Al-084.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json", @@ -3836,7 +3836,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-085.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json", @@ -3848,7 +3848,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "radon", "title": "Radon" @@ -3856,7 +3856,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "radon/srd13_Rn-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json", @@ -3868,7 +3868,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/chloride/srd13_Al-086.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json", @@ -3880,7 +3880,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/fluoride/srd13_Al-087.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json", @@ -3891,7 +3891,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/iodide/srd13_Al-088.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json", @@ -3903,7 +3903,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-089.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json", @@ -3915,7 +3915,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-090.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json", @@ -3927,7 +3927,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-091.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json", @@ -3939,7 +3939,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-092.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json", @@ -3951,7 +3951,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-093.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json", @@ -3963,7 +3963,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-094.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json", @@ -3975,7 +3975,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-095.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json", @@ -3987,7 +3987,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-096.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json", @@ -3999,7 +3999,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-097.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json", @@ -4011,7 +4011,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-098.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json", @@ -4023,7 +4023,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-099.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json", @@ -4035,7 +4035,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-100.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json", @@ -4047,7 +4047,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-101.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json", @@ -4059,7 +4059,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "aluminum/silicate", "title": "Aluminum Silicate" @@ -4067,7 +4067,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/silicate/srd13_Al-102.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json", @@ -4079,7 +4079,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/silicate/srd13_Al-103.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json", @@ -4091,7 +4091,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/silicate/srd13_Al-104.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json", @@ -4103,7 +4103,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/srd13_Al-105.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json", @@ -4115,7 +4115,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "chiolite", "title": "Chiolite" @@ -4123,7 +4123,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "chiolite/srd13_Al-106.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json", @@ -4135,7 +4135,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "chiolite/srd13_Al-107.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json", @@ -4147,7 +4147,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "chiolite/srd13_Al-108.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json", @@ -4159,7 +4159,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-109.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json", @@ -4171,7 +4171,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-110.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json", @@ -4183,7 +4183,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/oxide/srd13_Al-111.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json", @@ -4195,7 +4195,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "aluminum/silicate/srd13_Al-112.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json", @@ -4207,7 +4207,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "argon", "title": "Argon" @@ -4215,7 +4215,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "argon/srd13_Ar-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json", @@ -4227,7 +4227,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "argon/srd13_Ar-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json", @@ -4239,7 +4239,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "boron", "title": "Boron and Boron compounds" @@ -4247,7 +4247,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json", @@ -4259,7 +4259,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json", @@ -4271,7 +4271,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-003.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json", @@ -4283,7 +4283,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-004.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json", @@ -4295,7 +4295,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-005.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json", @@ -4307,7 +4307,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-006.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json", @@ -4319,7 +4319,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-007.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json", @@ -4331,7 +4331,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "borates/beryllium", "title": "Beryllium Borate" @@ -4339,7 +4339,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/beryllium/srd13_B-008.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json", @@ -4351,7 +4351,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-009.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json", @@ -4363,7 +4363,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-010.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json", @@ -4375,7 +4375,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-011.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json", @@ -4387,7 +4387,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-012.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json", @@ -4399,7 +4399,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-013.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json", @@ -4411,7 +4411,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_B-014.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json", @@ -4423,7 +4423,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-015.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json", @@ -4435,7 +4435,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-016.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json", @@ -4447,7 +4447,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-017.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json", @@ -4459,7 +4459,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-018.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json", @@ -4471,7 +4471,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-019.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json", @@ -4483,7 +4483,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-020.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json", @@ -4495,7 +4495,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-021.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json", @@ -4507,7 +4507,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-022.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json", @@ -4519,7 +4519,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-023.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json", @@ -4531,7 +4531,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-024.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json", @@ -4543,7 +4543,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-025.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json", @@ -4555,7 +4555,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-026.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json", @@ -4567,7 +4567,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-027.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json", @@ -4579,7 +4579,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-028.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json", @@ -4591,7 +4591,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-029.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json", @@ -4603,7 +4603,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-030.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json", @@ -4615,7 +4615,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-031.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json", @@ -4627,7 +4627,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-032.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json", @@ -4639,7 +4639,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-033.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json", @@ -4651,7 +4651,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-034.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json", @@ -4663,7 +4663,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-035.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json", @@ -4675,7 +4675,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-036.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json", @@ -4687,7 +4687,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-037.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json", @@ -4699,7 +4699,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-038.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json", @@ -4711,7 +4711,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-039.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json", @@ -4723,7 +4723,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-040.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json", @@ -4735,7 +4735,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-041.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json", @@ -4747,7 +4747,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-042.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json", @@ -4759,7 +4759,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-043.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json", @@ -4771,7 +4771,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-044.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json", @@ -4783,7 +4783,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-045.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json", @@ -4795,7 +4795,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-046.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json", @@ -4807,7 +4807,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-047.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json", @@ -4819,7 +4819,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-048.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json", @@ -4831,7 +4831,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-049.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json", @@ -4843,7 +4843,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-050.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json", @@ -4855,7 +4855,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-051.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json", @@ -4867,7 +4867,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-052.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json", @@ -4879,7 +4879,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-053.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json", @@ -4891,7 +4891,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-054.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json", @@ -4903,7 +4903,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-055.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json", @@ -4915,7 +4915,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-056.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json", @@ -4927,7 +4927,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-057.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json", @@ -4939,7 +4939,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-058.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json", @@ -4951,7 +4951,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-059.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json", @@ -4963,7 +4963,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-060.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json", @@ -4975,7 +4975,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-061.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json", @@ -4987,7 +4987,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-062.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json", @@ -4999,7 +4999,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-063.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json", @@ -5011,7 +5011,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-064.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json", @@ -5023,7 +5023,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-065.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json", @@ -5035,7 +5035,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-066.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json", @@ -5047,7 +5047,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/potassium/srd13_B-067.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json", @@ -5059,7 +5059,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-068.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json", @@ -5071,7 +5071,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-069.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json", @@ -5083,7 +5083,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-070.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json", @@ -5095,7 +5095,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lithium/srd13_B-071.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json", @@ -5107,7 +5107,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-072.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json", @@ -5119,7 +5119,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-073.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json", @@ -5131,7 +5131,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-074.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json", @@ -5143,7 +5143,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-075.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json", @@ -5155,7 +5155,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-076.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json", @@ -5167,7 +5167,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/sodium/srd13_B-077.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json", @@ -5179,7 +5179,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-078.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json", @@ -5191,7 +5191,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-079.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json", @@ -5203,7 +5203,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-080.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json", @@ -5215,7 +5215,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-081.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json", @@ -5227,7 +5227,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/titanium/srd13_B-082.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json", @@ -5239,7 +5239,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-083.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json", @@ -5251,7 +5251,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/beryllium/srd13_B-084.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json", @@ -5263,7 +5263,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/beryllium/srd13_B-085.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json", @@ -5275,7 +5275,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-086.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json", @@ -5287,7 +5287,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-087.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json", @@ -5299,7 +5299,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-088.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json", @@ -5311,7 +5311,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-089.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json", @@ -5323,7 +5323,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-090.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json", @@ -5335,7 +5335,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boranes/srd13_B-091.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json", @@ -5347,7 +5347,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/magnesium/srd13_B-092.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json", @@ -5359,7 +5359,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-093.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json", @@ -5371,7 +5371,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-094.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json", @@ -5383,7 +5383,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-095.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json", @@ -5395,7 +5395,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-096.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json", @@ -5407,7 +5407,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-097.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json", @@ -5419,7 +5419,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "boron/srd13_B-098.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json", @@ -5431,7 +5431,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lead/srd13_B-099.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json", @@ -5443,7 +5443,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borides/titanium/srd13_B-100.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json", @@ -5455,7 +5455,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "borates/lead/srd13_B-140.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json", @@ -5467,7 +5467,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "barium", "title": "Barium" @@ -5475,7 +5475,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "barium/srd13_Ba-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json", @@ -5487,7 +5487,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "barium/srd13_Ba-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json", @@ -5499,7 +5499,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "barium/srd13_Ba-003.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json", @@ -5511,7 +5511,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/calcium", "title": "Calcium Bromide" @@ -5519,7 +5519,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/calcium/srd13_Br-004.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json", @@ -5531,7 +5531,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromines", "title": "Bromimes" @@ -5539,7 +5539,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-005.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json", @@ -5551,7 +5551,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-006.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json", @@ -5563,7 +5563,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-007.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json", @@ -5575,7 +5575,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-008.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json", @@ -5587,7 +5587,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-009.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json", @@ -5599,7 +5599,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-010.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json", @@ -5611,7 +5611,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-011.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json", @@ -5623,7 +5623,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-012.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json", @@ -5635,7 +5635,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-013.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json", @@ -5647,7 +5647,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-014.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json", @@ -5659,7 +5659,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/potassium", "title": "Potassium Bromide" @@ -5667,7 +5667,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/potassium/srd13_Br-015.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json", @@ -5678,7 +5678,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/potassium/srd13_Br-016.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json", @@ -5690,7 +5690,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/potassium/srd13_Br-017.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json", @@ -5702,7 +5702,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/potassium/srd13_Br-018.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json", @@ -5714,7 +5714,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/lithium", "title": "Lithium Bromide" @@ -5722,7 +5722,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/lithium/srd13_Br-019.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json", @@ -5734,7 +5734,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/lithium/srd13_Br-020.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json", @@ -5746,7 +5746,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/lithium/srd13_Br-021.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json", @@ -5758,7 +5758,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/lithium/srd13_Br-022.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json", @@ -5770,7 +5770,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-023.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json", @@ -5782,7 +5782,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-024.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json", @@ -5794,7 +5794,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-025.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json", @@ -5806,7 +5806,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-026.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json", @@ -5818,7 +5818,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-027.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json", @@ -5830,7 +5830,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/sodium", "title": "Sodium Bromide" @@ -5838,7 +5838,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/sodium/srd13_Br-028.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json", @@ -5850,7 +5850,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/sodium/srd13_Br-029.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json", @@ -5862,7 +5862,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/sodium/srd13_Br-030.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json", @@ -5874,7 +5874,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-031.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json", @@ -5886,7 +5886,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-032.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json", @@ -5898,7 +5898,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-033.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json", @@ -5910,7 +5910,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-034.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json", @@ -5922,7 +5922,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-035.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json", @@ -5934,7 +5934,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-036.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json", @@ -5946,7 +5946,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/srd13_Br-037.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json", @@ -5958,7 +5958,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-038.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json", @@ -5970,7 +5970,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-039.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json", @@ -5982,7 +5982,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromines/srd13_Br-040.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json", @@ -5994,7 +5994,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/calcium/srd13_Br-041.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json", @@ -6006,7 +6006,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/calcium/srd13_Br-042.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json", @@ -6018,7 +6018,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/calcium/srd13_Br-043.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json", @@ -6030,7 +6030,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/calcium/srd13_Br-044.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json", @@ -6042,7 +6042,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/iron", "title": "Iron Bromide" @@ -6050,7 +6050,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/iron/srd13_Br-045.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json", @@ -6062,7 +6062,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/iron/srd13_Br-046.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json", @@ -6074,7 +6074,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/iron/srd13_Br-047.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json", @@ -6086,7 +6086,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/iron/srd13_Br-048.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json", @@ -6098,7 +6098,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-049.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json", @@ -6110,7 +6110,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/mercury", "title": "Mercury Bromide" @@ -6118,7 +6118,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/mercury/srd13_Br-050.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json", @@ -6130,7 +6130,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/mercury/srd13_Br-051.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json", @@ -6142,7 +6142,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/mercury/srd13_Br-052.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json", @@ -6154,7 +6154,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/mercury/srd13_Br-053.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json", @@ -6166,7 +6166,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/mercury/srd13_Br-054.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json", @@ -6178,7 +6178,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/potassium/srd13_Br-055.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json", @@ -6190,7 +6190,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/lithium/srd13_Br-056.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json", @@ -6202,7 +6202,7 @@ { "@type": [ "nrdp:Subcollection" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/Subcollection" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/Subcollection" ], "filepath": "bromides/magnesium", "title": "Magnesium Bromide" @@ -6210,7 +6210,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/magnesium/srd13_Br-057.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json", @@ -6222,7 +6222,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/magnesium/srd13_Br-058.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json", @@ -6234,7 +6234,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/magnesium/srd13_Br-059.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json", @@ -6246,7 +6246,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/magnesium/srd13_Br-060.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json", @@ -6258,7 +6258,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "bromides/magnesium/srd13_Br-061.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json", diff --git a/model/examples/janaf-hier2.json b/model/examples/janaf-hier2.json new file mode 100644 index 0000000..ef94c2c --- /dev/null +++ b/model/examples/janaf-hier2.json @@ -0,0 +1,7710 @@ +{ + "@context": "https://www.nist.gov/od/dm/nerdm-pub-context.jsonld", + "_schema": "https://www.nist.gov/od/dm/nerdm-schema/v0.1#", + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataPublication" + ], + "@type": [ + "nrd:SRD", + "nrdp:DataPublication", + "nrdp:PublicDataResource" + ], + "@id": "ark:/88434/pdr02d4t", + "doi": "doi:10.18434/T42S31", + "title": "NIST-JANAF Thermochemical Tables - SRD 13", + "abbrev": [ + "SRD#13" + ], + "authors": [ + { + "fn": "M.W. Chase, Jr.", + "givenName": "M.", + "middleName": "W.", + "familyName": "Chase", + "affiliation": [ + { + "@type": [ + "org:Organization" + ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + } + ], + "proxyFor": "sdpperson:Chase-MW" + }, + { + "fn": "C.A. Davies", + "givenName": "C.", + "middleName": "A.", + "familyName": "Davies", + "affiliation": [ + { + "@type": [ + "org:Organization" + ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + } + ], + "proxyFor": "sdpperson:Davies-CA" + }, + { + "fn": "J.R. Downey, Jr.", + "givenName": "J.", + "middleName": "R.", + "familyName": "Downey", + "affiliation": [ + { + "@type": [ + "org:Organization" + ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + } + ], + "proxyFor": "sdpperson:Downey-JR" + }, + { + "fn": "D.J. Frurip", + "givenName": "D.", + "middleName": "J.", + "familyName": "Frurip", + "affiliation": [ + { + "@type": [ + "org:Organization" + ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + } + ], + "proxyFor": "sdpperson:Frurip-DJ" + }, + { + "fn": "R.A. McDonald", + "givenName": "R.", + "familyName": "McDonald", + "affiliation": [ + { + "@type": [ + "org:Organization" + ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + } + ], + "proxyFor": "sdpperson:McDonald-RA" + }, + { + "fn": "A.N. Syverud", + "givenName": "A.", + "middleName": "N.", + "familyName": "Syverud", + "affiliation": [ + { + "@type": [ + "org:Organization" + ], + "title": "National Institute of Standards and Technology (NIST)", + "@id": "sdporg:NIST" + } + ], + "proxyFor": "sdpperson:Syverud-AN" + } + ], + "contactPoint": { + "hasEmail": "mailto:thomas.allison@nist.gov", + "fn": "Thomas Allison", + "address": [ + "Standard Reference Data Program", + "National Institute of Standards and Technology", + "Gaithersburg, MD 20899" + ] + }, + "issued": "1964", + "modified": "2013-01-01", + "ediid": "ECBCC1C1301D2ED9E04306570681B10735", + "landingPage": "http://kinetics.nist.gov/janaf/", + "description": [ + "This Fourth Edition to NIST-JANAF (Joint Army-Navy-Air Force) Thermochemical Tables contains tables of recommended temperature-dependent values for the standard enthalpy of formation Gibbs (free) energy of formation, the logarithm of equilibrium constant of formation, the heat capacity, entropy, enthalpy, and Gibbs energy function for 48 elements and many of their compounds. This publication is a current collection of all tables issued through 1997 under contracts with the U.S. Departement of Energy and the U.S. Air Force Office of Scientific Research, NASA, the JANNAF Combustion Subcommittee, and the SRD Program." + ], + "keyword": [ + "thermochemical tables", + "enthalpy", + "entropy", + "Gibbs free energy", + "equilibrium constant of formation" + ], + "references": [ + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 1 (AL-C", + "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol1-Intro.pdf", + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/v0.1#/definitions/DCiteDocumentReference" + ] + }, + { + "@type": "deo:BibliographicReference", + "refType": "IsDocumentedBy", + "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 2 (Cr-Zr)", + "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol2-Intro.pdf", + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/v0.1#/definitions/DCiteDocumentReference" + ] + } + ], + "accessLevel": "public", + "license": "http://www.nist.gov/data/license.cfm", + "inventory": [ + { + "forCollection": "", + "childCount": 30, + "descCount": 360, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 16, + "descCount": 318 + }, + { + "forType": "nrdp:DataFile", + "childCount": 16, + "descCount": 318 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 14, + "descCount": 42 + } + ], + "childCollections": [ + "borides", + "boroxins", + "borates", + "boranes", + "aluminum", + "bromides", + "luminates", + "cryolite", + "radon", + "chiolite", + "argon", + "boron", + "barium", + "bromines" + ] + }, + { + "forCollection": "borides", + "childCount": 3, + "descCount": 12, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 0, + "descCount": 9 + }, + { + "forType": "nrdp:DataFile", + "childCount": 0, + "descCount": 9 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [ + "borides/titanium", + "borides/zirconium", + "borides/magnesium" + ] + }, + { + "forCollection": "borides/titanium", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "borides/zirconium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "boroxins", + "childCount": 7, + "descCount": 7, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 7, + "descCount": 7 + }, + { + "forType": "nrdp:DataFile", + "childCount": 7, + "descCount": 7 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates", + "childCount": 6, + "descCount": 46, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 0, + "descCount": 40 + }, + { + "forType": "nrdp:DataFile", + "childCount": 0, + "descCount": 40 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [ + "borates/potassium", + "borates/lithium", + "borates/sodium", + "borates/lead", + "borates/aluminum", + "borates/beryllium" + ] + }, + { + "forCollection": "borates/potassium", + "childCount": 14, + "descCount": 14, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 14, + "descCount": 14 + }, + { + "forType": "nrdp:DataFile", + "childCount": 14, + "descCount": 14 + } + ], + "childCollections": [] + }, + { + "forCollection": "borides/magnesium", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/sodium", + "childCount": 9, + "descCount": 9, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 9, + "descCount": 9 + }, + { + "forType": "nrdp:DataFile", + "childCount": 9, + "descCount": 9 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/lead", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "boranes", + "childCount": 43, + "descCount": 48, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 41, + "descCount": 46 + }, + { + "forType": "nrdp:DataFile", + "childCount": 41, + "descCount": 46 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [ + "boranes/pentaborane", + "boranes/decaborane" + ] + }, + { + "forCollection": "boranes/pentaborane", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "boranes/decaborane", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum", + "childCount": 13, + "descCount": 96, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 86 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 86 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 10, + "descCount": 10 + } + ], + "childCollections": [ + "aluminum/aluminum", + "aluminum/ion", + "aluminum/chloride", + "aluminum/fluoride", + "aluminum/hydride", + "aluminum/hydoxide", + "aluminum/iodide", + "aluminum/oxide", + "aluminum/nitride", + "aluminum/silicate" + ] + }, + { + "forCollection": "aluminum/aluminum", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/ion", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/aluminum", + "childCount": 1, + "descCount": 1, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 1, + "descCount": 1 + }, + { + "forType": "nrdp:DataFile", + "childCount": 1, + "descCount": 1 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides", + "childCount": 24, + "descCount": 62, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 16, + "descCount": 54 + }, + { + "forType": "nrdp:DataFile", + "childCount": 16, + "descCount": 54 + }, + { + "forType": "nrdp:Subcollection", + "childCount": 8, + "descCount": 8 + } + ], + "childCollections": [ + "bromides/aluminum", + "bromides/calcium", + "bromides/potassium", + "bromides/lithium", + "bromides/sodium", + "bromides/iron", + "bromides/mercury", + "bromides/magnesium" + ] + }, + { + "forCollection": "bromides/aluminum", + "childCount": 6, + "descCount": 6, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 6, + "descCount": 6 + }, + { + "forType": "nrdp:DataFile", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/chloride", + "childCount": 17, + "descCount": 17, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 17, + "descCount": 17 + }, + { + "forType": "nrdp:DataFile", + "childCount": 17, + "descCount": 17 + } + ], + "childCollections": [] + }, + { + "forCollection": "luminates", + "childCount": 12, + "descCount": 12, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 12, + "descCount": 12 + }, + { + "forType": "nrdp:DataFile", + "childCount": 12, + "descCount": 12 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/fluoride", + "childCount": 13, + "descCount": 13, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 13, + "descCount": 13 + }, + { + "forType": "nrdp:DataFile", + "childCount": 13, + "descCount": 13 + } + ], + "childCollections": [] + }, + { + "forCollection": "cryolite", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/hydride", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/hydoxide", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/iodide", + "childCount": 6, + "descCount": 6, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 6, + "descCount": 6 + }, + { + "forType": "nrdp:DataFile", + "childCount": 6, + "descCount": 6 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/oxide", + "childCount": 28, + "descCount": 28, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 28, + "descCount": 28 + }, + { + "forType": "nrdp:DataFile", + "childCount": 28, + "descCount": 28 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/nitride", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "radon", + "childCount": 1, + "descCount": 1, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 1, + "descCount": 1 + }, + { + "forType": "nrdp:DataFile", + "childCount": 1, + "descCount": 1 + } + ], + "childCollections": [] + }, + { + "forCollection": "aluminum/silicate", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "chiolite", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "argon", + "childCount": 2, + "descCount": 2, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 2, + "descCount": 2 + }, + { + "forType": "nrdp:DataFile", + "childCount": 2, + "descCount": 2 + } + ], + "childCollections": [] + }, + { + "forCollection": "boron", + "childCount": 28, + "descCount": 28, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 28, + "descCount": 28 + }, + { + "forType": "nrdp:DataFile", + "childCount": 28, + "descCount": 28 + } + ], + "childCollections": [] + }, + { + "forCollection": "borates/beryllium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "barium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/calcium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromines", + "childCount": 7, + "descCount": 7, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 7, + "descCount": 7 + }, + { + "forType": "nrdp:DataFile", + "childCount": 7, + "descCount": 7 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/potassium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/lithium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/sodium", + "childCount": 3, + "descCount": 3, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 3, + "descCount": 3 + }, + { + "forType": "nrdp:DataFile", + "childCount": 3, + "descCount": 3 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/iron", + "childCount": 4, + "descCount": 4, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 4, + "descCount": 4 + }, + { + "forType": "nrdp:DataFile", + "childCount": 4, + "descCount": 4 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/mercury", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + }, + { + "forCollection": "bromides/magnesium", + "childCount": 5, + "descCount": 5, + "byType": [ + { + "forType": "dcat:Distribution", + "childCount": 5, + "descCount": 5 + }, + { + "forType": "nrdp:DataFile", + "childCount": 5, + "descCount": 5 + } + ], + "childCollections": [] + } + ], + "dataHierarchy": [ + { + "filepath": "borides", + "children": [ + { + "filepath": "borides/titanium", + "children": [ + { + "filepath": "borides/titanium/srd13_B-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json" + }, + { + "filepath": "borides/titanium/srd13_B-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json" + }, + { + "filepath": "borides/titanium/srd13_B-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json" + }, + { + "filepath": "borides/titanium/srd13_B-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json" + } + ] + }, + { + "filepath": "borides/zirconium", + "children": [ + { + "filepath": "borides/zirconium/srd13_B-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json" + }, + { + "filepath": "borides/zirconium/srd13_B-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json" + }, + { + "filepath": "borides/zirconium/srd13_B-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json" + } + ] + }, + { + "filepath": "borides/magnesium", + "children": [ + { + "filepath": "borides/magnesium/srd13_B-121.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json" + }, + { + "filepath": "borides/magnesium/srd13_B-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json" + } + ] + } + ] + }, + { + "filepath": "boroxins", + "children": [ + { + "filepath": "boroxins/srd13_B-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json" + }, + { + "filepath": "boroxins/srd13_B-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json" + }, + { + "filepath": "boroxins/srd13_B-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json" + }, + { + "filepath": "boroxins/srd13_B-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json" + }, + { + "filepath": "boroxins/srd13_B-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json" + }, + { + "filepath": "boroxins/srd13_B-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json" + }, + { + "filepath": "boroxins/srd13_B-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json" + } + ] + }, + { + "filepath": "srd13_B-113.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json" + }, + { + "filepath": "srd13_B-114.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json" + }, + { + "filepath": "borates", + "children": [ + { + "filepath": "borates/potassium", + "children": [ + { + "filepath": "borates/potassium/srd13_B-115.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json" + }, + { + "filepath": "borates/potassium/srd13_B-128.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json" + }, + { + "filepath": "borates/potassium/srd13_B-132.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json" + }, + { + "filepath": "borates/potassium/srd13_B-133.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json" + }, + { + "filepath": "borates/potassium/srd13_B-134.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json" + }, + { + "filepath": "borates/potassium/srd13_B-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json" + }, + { + "filepath": "borates/potassium/srd13_B-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json" + }, + { + "filepath": "borates/potassium/srd13_B-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json" + }, + { + "filepath": "borates/potassium/srd13_B-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json" + }, + { + "filepath": "borates/potassium/srd13_B-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json" + }, + { + "filepath": "borates/potassium/srd13_B-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json" + }, + { + "filepath": "borates/potassium/srd13_B-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json" + }, + { + "filepath": "borates/potassium/srd13_B-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json" + }, + { + "filepath": "borates/potassium/srd13_B-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json" + } + ] + }, + { + "filepath": "borates/lithium", + "children": [ + { + "filepath": "borates/lithium/srd13_B-118.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json" + }, + { + "filepath": "borates/lithium/srd13_B-120.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json" + }, + { + "filepath": "borates/lithium/srd13_B-129.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json" + }, + { + "filepath": "borates/lithium/srd13_B-135.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json" + }, + { + "filepath": "borates/lithium/srd13_B-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json" + }, + { + "filepath": "borates/lithium/srd13_B-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json" + }, + { + "filepath": "borates/lithium/srd13_B-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json" + }, + { + "filepath": "borates/lithium/srd13_B-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json" + }, + { + "filepath": "borates/lithium/srd13_B-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json" + } + ] + }, + { + "filepath": "borates/sodium", + "children": [ + { + "filepath": "borates/sodium/srd13_B-122.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json" + }, + { + "filepath": "borates/sodium/srd13_B-123.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json" + }, + { + "filepath": "borates/sodium/srd13_B-124.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json" + }, + { + "filepath": "borates/sodium/srd13_B-130.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json" + }, + { + "filepath": "borates/sodium/srd13_B-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json" + }, + { + "filepath": "borates/sodium/srd13_B-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json" + }, + { + "filepath": "borates/sodium/srd13_B-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json" + }, + { + "filepath": "borates/sodium/srd13_B-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json" + }, + { + "filepath": "borates/sodium/srd13_B-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json" + } + ] + }, + { + "filepath": "borates/lead", + "children": [ + { + "filepath": "borates/lead/srd13_B-125.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json" + }, + { + "filepath": "borates/lead/srd13_B-131.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json" + }, + { + "filepath": "borates/lead/srd13_B-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json" + }, + { + "filepath": "borates/lead/srd13_B-140.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json" + } + ] + }, + { + "filepath": "borates/aluminum", + "children": [ + { + "filepath": "borates/aluminum/srd13_Al-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json" + } + ] + }, + { + "filepath": "borates/beryllium", + "children": [ + { + "filepath": "borates/beryllium/srd13_B-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json" + }, + { + "filepath": "borates/beryllium/srd13_B-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json" + }, + { + "filepath": "borates/beryllium/srd13_B-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json" + } + ] + } + ] + }, + { + "filepath": "srd13_B-116.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json" + }, + { + "filepath": "srd13_B-117.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json" + }, + { + "filepath": "srd13_B-119.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json" + }, + { + "filepath": "boranes", + "children": [ + { + "filepath": "boranes/pentaborane", + "children": [ + { + "filepath": "boranes/pentaborane/srd13_B-126.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json" + }, + { + "filepath": "boranes/pentaborane/srd13_B-127.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json" + } + ] + }, + { + "filepath": "boranes/decaborane", + "children": [ + { + "filepath": "boranes/decaborane/srd13_B-136.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json" + }, + { + "filepath": "boranes/decaborane/srd13_B-137.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json" + }, + { + "filepath": "boranes/decaborane/srd13_B-138.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json" + } + ] + }, + { + "filepath": "boranes/srd13_B-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json" + }, + { + "filepath": "boranes/srd13_B-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json" + }, + { + "filepath": "boranes/srd13_B-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json" + }, + { + "filepath": "boranes/srd13_B-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json" + }, + { + "filepath": "boranes/srd13_B-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json" + }, + { + "filepath": "boranes/srd13_B-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json" + }, + { + "filepath": "boranes/srd13_B-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json" + }, + { + "filepath": "boranes/srd13_B-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json" + }, + { + "filepath": "boranes/srd13_B-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json" + }, + { + "filepath": "boranes/srd13_B-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json" + }, + { + "filepath": "boranes/srd13_B-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json" + }, + { + "filepath": "boranes/srd13_B-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json" + }, + { + "filepath": "boranes/srd13_B-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json" + }, + { + "filepath": "boranes/srd13_B-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json" + }, + { + "filepath": "boranes/srd13_B-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json" + }, + { + "filepath": "boranes/srd13_B-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json" + }, + { + "filepath": "boranes/srd13_B-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json" + }, + { + "filepath": "boranes/srd13_B-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json" + }, + { + "filepath": "boranes/srd13_B-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json" + }, + { + "filepath": "boranes/srd13_B-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json" + }, + { + "filepath": "boranes/srd13_B-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json" + }, + { + "filepath": "boranes/srd13_B-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json" + }, + { + "filepath": "boranes/srd13_B-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json" + }, + { + "filepath": "boranes/srd13_B-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json" + }, + { + "filepath": "boranes/srd13_B-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json" + }, + { + "filepath": "boranes/srd13_B-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json" + }, + { + "filepath": "boranes/srd13_B-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json" + }, + { + "filepath": "boranes/srd13_B-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json" + }, + { + "filepath": "boranes/srd13_B-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json" + }, + { + "filepath": "boranes/srd13_B-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json" + }, + { + "filepath": "boranes/srd13_B-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json" + }, + { + "filepath": "boranes/srd13_B-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json" + }, + { + "filepath": "boranes/srd13_B-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json" + }, + { + "filepath": "boranes/srd13_B-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json" + }, + { + "filepath": "boranes/srd13_B-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json" + }, + { + "filepath": "boranes/srd13_B-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json" + }, + { + "filepath": "boranes/srd13_B-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json" + }, + { + "filepath": "boranes/srd13_B-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json" + }, + { + "filepath": "boranes/srd13_B-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json" + }, + { + "filepath": "boranes/srd13_B-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json" + }, + { + "filepath": "boranes/srd13_B-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json" + } + ] + }, + { + "filepath": "srd13_B-139.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json" + }, + { + "filepath": "srd13_janaf-zipfile.zip", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip" + }, + { + "filepath": "srd13_janaf.species.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf.species.json" + }, + { + "filepath": "aluminum", + "children": [ + { + "filepath": "aluminum/aluminum", + "children": [ + { + "filepath": "aluminum/aluminum/srd13_Al-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json" + }, + { + "filepath": "aluminum/aluminum/srd13_Al-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json" + }, + { + "filepath": "aluminum/aluminum/srd13_Al-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json" + }, + { + "filepath": "aluminum/aluminum/srd13_Al-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json" + }, + { + "filepath": "aluminum/aluminum/srd13_Al-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json" + } + ] + }, + { + "filepath": "aluminum/ion", + "children": [ + { + "filepath": "aluminum/ion/srd13_Al-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json" + }, + { + "filepath": "aluminum/ion/srd13_Al-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json" + } + ] + }, + { + "filepath": "aluminum/chloride", + "children": [ + { + "filepath": "aluminum/chloride/srd13_Al-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json" + }, + { + "filepath": "aluminum/chloride/srd13_Al-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json" + } + ] + }, + { + "filepath": "aluminum/fluoride", + "children": [ + { + "filepath": "aluminum/fluoride/srd13_Al-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json" + }, + { + "filepath": "aluminum/fluoride/srd13_Al-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json" + } + ] + }, + { + "filepath": "aluminum/hydride", + "children": [ + { + "filepath": "aluminum/hydride/srd13_Al-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json" + }, + { + "filepath": "aluminum/hydride/srd13_Al-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json" + } + ] + }, + { + "filepath": "aluminum/hydoxide", + "children": [ + { + "filepath": "aluminum/hydoxide/srd13_Al-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json" + }, + { + "filepath": "aluminum/hydoxide/srd13_Al-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json" + }, + { + "filepath": "aluminum/hydoxide/srd13_Al-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json" + }, + { + "filepath": "aluminum/hydoxide/srd13_Al-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json" + } + ] + }, + { + "filepath": "aluminum/iodide", + "children": [ + { + "filepath": "aluminum/iodide/srd13_Al-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json" + }, + { + "filepath": "aluminum/iodide/srd13_Al-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json" + }, + { + "filepath": "aluminum/iodide/srd13_Al-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json" + }, + { + "filepath": "aluminum/iodide/srd13_Al-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json" + }, + { + "filepath": "aluminum/iodide/srd13_Al-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json" + }, + { + "filepath": "aluminum/iodide/srd13_Al-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json" + } + ] + }, + { + "filepath": "aluminum/oxide", + "children": [ + { + "filepath": "aluminum/oxide/srd13_Al-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json" + }, + { + "filepath": "aluminum/oxide/srd13_Al-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json" + } + ] + }, + { + "filepath": "aluminum/nitride", + "children": [ + { + "filepath": "aluminum/nitride/srd13_Al-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json" + }, + { + "filepath": "aluminum/nitride/srd13_Al-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json" + } + ] + }, + { + "filepath": "aluminum/srd13_Al-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json" + }, + { + "filepath": "aluminum/srd13_Al-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json" + }, + { + "filepath": "aluminum/silicate", + "children": [ + { + "filepath": "aluminum/silicate/srd13_Al-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json" + }, + { + "filepath": "aluminum/silicate/srd13_Al-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json" + }, + { + "filepath": "aluminum/silicate/srd13_Al-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json" + }, + { + "filepath": "aluminum/silicate/srd13_Al-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json" + } + ] + }, + { + "filepath": "aluminum/srd13_Al-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json" + } + ] + }, + { + "filepath": "bromides", + "children": [ + { + "filepath": "bromides/aluminum", + "children": [ + { + "filepath": "bromides/aluminum/srd13_Al-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json" + }, + { + "filepath": "bromides/aluminum/srd13_Al-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json" + }, + { + "filepath": "bromides/aluminum/srd13_Al-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json" + }, + { + "filepath": "bromides/aluminum/srd13_Al-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json" + }, + { + "filepath": "bromides/aluminum/srd13_Al-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json" + }, + { + "filepath": "bromides/aluminum/srd13_Al-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json" + } + ] + }, + { + "filepath": "bromides/srd13_B-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json" + }, + { + "filepath": "bromides/calcium", + "children": [ + { + "filepath": "bromides/calcium/srd13_Br-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json" + }, + { + "filepath": "bromides/calcium/srd13_Br-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json" + }, + { + "filepath": "bromides/calcium/srd13_Br-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json" + }, + { + "filepath": "bromides/calcium/srd13_Br-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json" + }, + { + "filepath": "bromides/calcium/srd13_Br-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json" + } + ] + }, + { + "filepath": "bromides/srd13_Br-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json" + }, + { + "filepath": "bromides/srd13_Br-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json" + }, + { + "filepath": "bromides/srd13_Br-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json" + }, + { + "filepath": "bromides/srd13_Br-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json" + }, + { + "filepath": "bromides/srd13_Br-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json" + }, + { + "filepath": "bromides/potassium", + "children": [ + { + "filepath": "bromides/potassium/srd13_Br-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json" + }, + { + "filepath": "bromides/potassium/srd13_Br-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json" + }, + { + "filepath": "bromides/potassium/srd13_Br-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json" + }, + { + "filepath": "bromides/potassium/srd13_Br-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json" + }, + { + "filepath": "bromides/potassium/srd13_Br-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json" + } + ] + }, + { + "filepath": "bromides/lithium", + "children": [ + { + "filepath": "bromides/lithium/srd13_Br-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json" + }, + { + "filepath": "bromides/lithium/srd13_Br-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json" + }, + { + "filepath": "bromides/lithium/srd13_Br-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json" + }, + { + "filepath": "bromides/lithium/srd13_Br-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json" + }, + { + "filepath": "bromides/lithium/srd13_Br-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json" + } + ] + }, + { + "filepath": "bromides/srd13_Br-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json" + }, + { + "filepath": "bromides/srd13_Br-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json" + }, + { + "filepath": "bromides/srd13_Br-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json" + }, + { + "filepath": "bromides/srd13_Br-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json" + }, + { + "filepath": "bromides/sodium", + "children": [ + { + "filepath": "bromides/sodium/srd13_Br-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json" + }, + { + "filepath": "bromides/sodium/srd13_Br-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json" + }, + { + "filepath": "bromides/sodium/srd13_Br-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json" + } + ] + }, + { + "filepath": "bromides/srd13_Br-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json" + }, + { + "filepath": "bromides/srd13_Br-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json" + }, + { + "filepath": "bromides/srd13_Br-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json" + }, + { + "filepath": "bromides/srd13_Br-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json" + }, + { + "filepath": "bromides/srd13_Br-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json" + }, + { + "filepath": "bromides/srd13_Br-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json" + }, + { + "filepath": "bromides/iron", + "children": [ + { + "filepath": "bromides/iron/srd13_Br-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json" + }, + { + "filepath": "bromides/iron/srd13_Br-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json" + }, + { + "filepath": "bromides/iron/srd13_Br-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json" + }, + { + "filepath": "bromides/iron/srd13_Br-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json" + } + ] + }, + { + "filepath": "bromides/mercury", + "children": [ + { + "filepath": "bromides/mercury/srd13_Br-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json" + }, + { + "filepath": "bromides/mercury/srd13_Br-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json" + }, + { + "filepath": "bromides/mercury/srd13_Br-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json" + }, + { + "filepath": "bromides/mercury/srd13_Br-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json" + }, + { + "filepath": "bromides/mercury/srd13_Br-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json" + } + ] + }, + { + "filepath": "bromides/magnesium", + "children": [ + { + "filepath": "bromides/magnesium/srd13_Br-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json" + }, + { + "filepath": "bromides/magnesium/srd13_Br-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json" + }, + { + "filepath": "bromides/magnesium/srd13_Br-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json" + }, + { + "filepath": "bromides/magnesium/srd13_Br-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json" + }, + { + "filepath": "bromides/magnesium/srd13_Br-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json" + } + ] + } + ] + }, + { + "filepath": "luminates", + "children": [ + { + "filepath": "luminates/srd13_Al-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json" + }, + { + "filepath": "luminates/srd13_Al-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json" + }, + { + "filepath": "luminates/srd13_Al-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json" + }, + { + "filepath": "luminates/srd13_Al-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json" + }, + { + "filepath": "luminates/srd13_Al-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json" + }, + { + "filepath": "luminates/srd13_Al-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json" + }, + { + "filepath": "luminates/srd13_Al-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json" + }, + { + "filepath": "luminates/srd13_Al-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json" + }, + { + "filepath": "luminates/srd13_Al-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json" + }, + { + "filepath": "luminates/srd13_Al-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json" + }, + { + "filepath": "luminates/srd13_Al-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json" + }, + { + "filepath": "luminates/srd13_Al-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json" + } + ] + }, + { + "filepath": "cryolite", + "children": [ + { + "filepath": "cryolite/srd13_Al-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json" + }, + { + "filepath": "cryolite/srd13_Al-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json" + }, + { + "filepath": "cryolite/srd13_Al-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json" + }, + { + "filepath": "cryolite/srd13_Al-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json" + } + ] + }, + { + "filepath": "radon", + "children": [ + { + "filepath": "radon/srd13_Rn-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json" + } + ] + }, + { + "filepath": "chiolite", + "children": [ + { + "filepath": "chiolite/srd13_Al-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json" + }, + { + "filepath": "chiolite/srd13_Al-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json" + }, + { + "filepath": "chiolite/srd13_Al-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json" + } + ] + }, + { + "filepath": "argon", + "children": [ + { + "filepath": "argon/srd13_Ar-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json" + }, + { + "filepath": "argon/srd13_Ar-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json" + } + ] + }, + { + "filepath": "boron", + "children": [ + { + "filepath": "boron/srd13_B-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json" + }, + { + "filepath": "boron/srd13_B-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json" + }, + { + "filepath": "boron/srd13_B-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json" + }, + { + "filepath": "boron/srd13_B-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json" + }, + { + "filepath": "boron/srd13_B-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json" + }, + { + "filepath": "boron/srd13_B-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json" + }, + { + "filepath": "boron/srd13_B-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json" + }, + { + "filepath": "boron/srd13_B-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json" + }, + { + "filepath": "boron/srd13_B-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json" + }, + { + "filepath": "boron/srd13_B-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json" + }, + { + "filepath": "boron/srd13_B-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json" + }, + { + "filepath": "boron/srd13_B-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json" + }, + { + "filepath": "boron/srd13_B-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json" + }, + { + "filepath": "boron/srd13_B-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json" + }, + { + "filepath": "boron/srd13_B-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json" + }, + { + "filepath": "boron/srd13_B-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json" + }, + { + "filepath": "boron/srd13_B-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json" + }, + { + "filepath": "boron/srd13_B-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json" + }, + { + "filepath": "boron/srd13_B-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json" + }, + { + "filepath": "boron/srd13_B-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json" + }, + { + "filepath": "boron/srd13_B-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json" + }, + { + "filepath": "boron/srd13_B-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json" + }, + { + "filepath": "boron/srd13_B-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json" + }, + { + "filepath": "boron/srd13_B-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json" + }, + { + "filepath": "boron/srd13_B-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json" + }, + { + "filepath": "boron/srd13_B-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json" + }, + { + "filepath": "boron/srd13_B-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json" + }, + { + "filepath": "boron/srd13_B-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json" + } + ] + }, + { + "filepath": "srd13_B-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json" + }, + { + "filepath": "srd13_B-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json" + }, + { + "filepath": "srd13_B-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json" + }, + { + "filepath": "srd13_B-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json" + }, + { + "filepath": "barium", + "children": [ + { + "filepath": "barium/srd13_Ba-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json" + }, + { + "filepath": "barium/srd13_Ba-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json" + }, + { + "filepath": "barium/srd13_Ba-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json" + } + ] + }, + { + "filepath": "bromines", + "children": [ + { + "filepath": "bromines/srd13_Br-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json" + }, + { + "filepath": "bromines/srd13_Br-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json" + }, + { + "filepath": "bromines/srd13_Br-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json" + }, + { + "filepath": "bromines/srd13_Br-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json" + }, + { + "filepath": "bromines/srd13_Br-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json" + }, + { + "filepath": "bromines/srd13_Br-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json" + }, + { + "filepath": "bromines/srd13_Br-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json" + } + ] + }, + { + "filepath": "srd13_Br-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json" + }, + { + "filepath": "srd13_Br-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json" + }, + { + "filepath": "srd13_Br-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json" + }, + { + "filepath": "srd13_Br-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json" + } + ], + "components": [ + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borides", + "title": "Metal Borides" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borides/titanium", + "title": "Titanium Boride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-102" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-101" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borides/zirconium", + "title": "Zirconium Boride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/zirconium/srd13_B-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-103", + "description": "Zirconium Boride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/zirconium/srd13_B-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-104", + "description": "Zirconium Boride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/zirconium/srd13_B-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-105", + "description": "Zirconium Boride" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "boroxins", + "title": "Boroxins" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trichloroboroxin", + "title": "B-106" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Fluoroboroxin", + "title": "B-107" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-108" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "B-109" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trifluoroboroxin", + "title": "B-110" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boroxin", + "title": "B-111" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boroxins/srd13_B-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boroxin", + "title": "B-111" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-113.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-113" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-114.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borazine", + "title": "B-114" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates", + "title": "Borates" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates/potassium", + "title": "Potassium Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-115.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-115" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-116.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-116" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-117.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-117" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates/lithium", + "title": "Lithium Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-118.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-118" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-119.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Lithium Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-120.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-120" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borides/magnesium", + "title": "Magnesium Boride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/magnesium/srd13_B-121.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Boride", + "title": "B-121" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates/sodium", + "title": "Sodium Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-122.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-122" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-123.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-123" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-124.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-124" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates/lead", + "title": "Lead Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-125.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-125" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "boranes", + "title": "Boranes" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "boranes/pentaborane", + "title": "Pentaborane" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/pentaborane/srd13_B-126.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Pentaborane", + "title": "B-126" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/pentaborane/srd13_B-127.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Pentaborane", + "title": "B-127" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-128.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-128" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-129.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-129" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-130.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-130" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-131.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-131" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-132.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-132" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-133.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-133" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-134.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-134" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-135.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-135" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "boranes/decaborane", + "title": "Decaaborane" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/decaborane/srd13_B-136.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-136" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/decaborane/srd13_B-137.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-137" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/decaborane/srd13_B-138.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-138" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-139.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Decaborane", + "title": "B-139" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_janaf-zipfile.zip", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip", + "mediaType": "application/zip", + "description": "A zipped file of all 1,799 JANAF species, index, and definition files.", + "title": "Compressed folder of all JANAF files" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_janaf.species.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf.species.json", + "mediaType": "application/json", + "description": "An index file containing metadata for each of the species, including chemical name, data file name, CAS Number (Chemical Abstracts Registry Number), molecular formula (in Hill-sorted order), and state (or phase).", + "title": "JANAF Species Index" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum", + "title": "Aluminum and Aluminum compounds" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/aluminum", + "title": "Aluminum" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-001" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-002" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-003" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-004" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/aluminum/srd13_Al-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-005" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/ion", + "title": "Aluminum, Ion" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/ion/srd13_Al-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum, Ion", + "title": "Al-006" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/ion/srd13_Al-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum, Ion", + "title": "Al-007" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates/aluminum", + "title": "Aluminum Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/aluminum/srd13_Al-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Borate", + "title": "Al-008" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides", + "title": "Bromides" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/aluminum", + "title": "Aluminum Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-009" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-010" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-011" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-012" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-013" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/chloride", + "title": "Aluminum Chloride compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-014" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride, Ion", + "title": "Al-015" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride", + "title": "Al-016" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride, Ion", + "title": "Al-017" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride", + "title": "Al-018" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Oxide", + "title": "Al-019" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Oxide", + "title": "Al-020" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-021" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride, Ion", + "title": "Al-022" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride, Ion", + "title": "Al-023" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride Fluoride", + "title": "Al-024" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-025" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-026" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-027" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-028" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "luminates", + "title": "Luminate compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrachloroaluminate", + "title": "Al-029" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Tetrachloroaluminate", + "title": "Al-030" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Hexachloroaluminate", + "title": "Al-031" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Hexachloroaluminate", + "title": "Al-032" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/fluoride", + "title": "Aluminum Fluoride compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-033" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride, Ion", + "title": "Al-034" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride Oxide", + "title": "Al-035" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-036" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride, Ion", + "title": "Al-037" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride, Ion", + "title": "Al-038" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride Oxide", + "title": "Al-039" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride Oxide, Ion", + "title": "Al-040" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-041" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-017" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-043" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Fluoride", + "title": "Al-044" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tetrafluoroaluminate, Ion", + "title": "Al-045" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Tetrafluoroaluminate", + "title": "Al-046" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Tetrafluoroaluminate", + "title": "Al-047" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Hexafluoraluminate", + "title": "Al-048" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Hexafluoroaluminate", + "title": "Al-049" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Hexafluoroaluminate", + "title": "Al-050" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Hexafluoroaluminate", + "title": "Al-051" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "cryolite", + "title": "Cryolite" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite, Alpha", + "title": "Al-052" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite, Beta", + "title": "Al-053" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite", + "title": "Al-054" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "cryolite/srd13_Al-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Cryolite", + "title": "Al-055" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/hydride", + "title": "Aluminum Hydride compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/hydride/srd13_Al-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydride", + "title": "Al-056" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/hydride/srd13_Al-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydride Oxide", + "title": "Al-057" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/hydoxide", + "title": "Aluminum Hydroxide compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide", + "title": "Al-058" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide, Ion", + "title": "Al-059" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide, Ion", + "title": "Al-060" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/hydoxide/srd13_Al-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Hydroxide Oxide", + "title": "Al-061" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "luminates/srd13_Al-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Tetrahydroaluminate", + "title": "Al-062" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/iodide", + "title": "Aluminum Iodide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-063" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-064" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-065" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-066" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-067" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/oxide", + "title": "Aluminum Oxide compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Aluminum Oxide", + "title": "Al-068" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Aluminum Oxide", + "title": "Al-069" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Aluminum Oxide", + "title": "Al-070" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/nitride", + "title": "Aluminum Nitride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/nitride/srd13_Al-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Nitride", + "title": "Al-071" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/nitride/srd13_Al-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Nitride", + "title": "Al-072" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Aluminum Oxide", + "title": "Al-073" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-074" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-075" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-076" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-017" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-078" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/srd13_Al-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Sulfide", + "title": "Al-079" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/srd13_Al-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum", + "title": "Al-080" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-081" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-082" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-083" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/aluminum/srd13_Al-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Bromide", + "title": "Al-084" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Chloride", + "title": "Al-085" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "radon", + "title": "Radon" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "radon/srd13_Rn-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Radon, Ion", + "title": "Rn-002" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/chloride/srd13_Al-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Aluminum Chloride", + "title": "Al-086" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/fluoride/srd13_Al-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Aluminum Fluoride" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/iodide/srd13_Al-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Iodide", + "title": "Al-088" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Aluminum Oxide", + "title": "Al-089" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Aluminum Oxide", + "title": "Al-090" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Aluminum Oxide", + "title": "Al-091" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-092" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-093" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-094" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Ion", + "title": "Al-095" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Alpha", + "title": "Al-096" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Delta", + "title": "Al-097" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Gamma", + "title": "Al-098" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide, Kappa", + "title": "Al-099" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-100" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-101.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Oxide", + "title": "Al-101" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "aluminum/silicate", + "title": "Aluminum Silicate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-102.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Andalusite", + "title": "Al-102" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-103.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Kyanite", + "title": "Al-103" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-104.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Sillimanite", + "title": "Al-104" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/srd13_Al-105.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Sulfide", + "title": "Al-105" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "chiolite", + "title": "Chiolite" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "chiolite/srd13_Al-106.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chiolite", + "title": "Al-106" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "chiolite/srd13_Al-107.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chiolite", + "title": "Al-107" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "chiolite/srd13_Al-108.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chiolite", + "title": "Al-108" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-109.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-109" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-110.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-110" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/oxide/srd13_Al-111.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Aluminum Oxide", + "title": "Al-111" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "aluminum/silicate/srd13_Al-112.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Aluminum Silicate, Mullite", + "title": "Al-112" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "argon", + "title": "Argon" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "argon/srd13_Ar-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Argon", + "title": "Ar-001" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "argon/srd13_Ar-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Argon, Ion", + "title": "Ar-002" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "boron", + "title": "Boron and Boron compounds" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-001" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron, Beta-Rhombohedral", + "title": "B-002" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-003" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-004" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-005" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron, Ion", + "title": "B-006" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron, Ion", + "title": "B-007" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "borates/beryllium", + "title": "Beryllium Borate" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/beryllium/srd13_B-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Borate", + "title": "B-008" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromoborane", + "title": "B-009" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromochloroborane", + "title": "B-010" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromodichloroborane", + "title": "B-011" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromofluoroborane", + "title": "B-012" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromodifluoroborane", + "title": "B-013" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_B-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Bromide Oxide", + "title": "B-014" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromoborane", + "title": "B-015" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromochloroborane", + "title": "B-016" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromofluoroborane", + "title": "B-017" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromoborane", + "title": "B-018" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tribromoborane", + "title": "B-019" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tribromoborane", + "title": "B-020" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chloroborane", + "title": "B-021" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chloroborane, Ion", + "title": "B-022" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chlorofluoroborane", + "title": "B-023" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Chlorodifluoroborane", + "title": "B-024" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Chloride Oxide", + "title": "B-025" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane", + "title": "B-026" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane, Ion", + "title": "B-027" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane, Ion", + "title": "B-028" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichlorofluoroborane", + "title": "B-029" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane", + "title": "B-030" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trichloroborane", + "title": "B-031" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Fluoroborane", + "title": "B-032" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Fluoride Oxide", + "title": "B-033" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane", + "title": "B-034" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane, Ion", + "title": "B-035" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane, Ion", + "title": "B-036" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane", + "title": "B-037" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluorohydroxyborane", + "title": "B-038" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Fluoride Oxide", + "title": "B-039" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Trifluoroborane", + "title": "B-040" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-041" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-042" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-043" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrafluoroborate", + "title": "B-044" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borane", + "title": "B-045" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Oxide", + "title": "B-046" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Oxide, Ion", + "title": "B-047" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Oxide, Ion", + "title": "B-048" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-049" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-050" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Sulfide", + "title": "B-051" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Hydride Sulfide, Ion", + "title": "B-052" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borane", + "title": "B-053" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dihydroxyborane", + "title": "B-054" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Borane", + "title": "B-055" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-056" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_B-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boric Acid", + "title": "B-057" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Tetrahydroborate", + "title": "B-058" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Tetrahydroborate", + "title": "B-059" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Tetrahydroborate", + "title": "B-060" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iodoborane", + "title": "B-061" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-062.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Diiodoborane", + "title": "B-062" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-063.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Triiodoborane", + "title": "B-063" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-064.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-064" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-065.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-065" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-066.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-066" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/potassium/srd13_B-067.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Borate", + "title": "B-067" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-068.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-068" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-069.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-069" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-070.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-070" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lithium/srd13_B-071.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Borate", + "title": "B-071" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-072.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Nitride", + "title": "B-072" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-073.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Nitride", + "title": "B-073" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-074.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-074" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-075.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-075" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-076.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-076" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/sodium/srd13_B-077.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Borate", + "title": "B-077" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-078.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-078" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-079.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-079" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-080.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide, Ion", + "title": "B-080" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-081.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Sulfide", + "title": "B-081" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-082.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Titanium Boride", + "title": "B-082" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-083.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron", + "title": "B-083" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/beryllium/srd13_B-084.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Borate", + "title": "B-084" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/beryllium/srd13_B-085.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Beryllium Borate", + "title": "B-085" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-086.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dichloroborane", + "title": "B-086" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-087.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane", + "title": "B-087" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-088.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Difluoroborane Oxide", + "title": "B-088" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-089.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dihydroxyborane", + "title": "B-089" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-090.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dihydroxyborane", + "title": "B-090" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boranes/srd13_B-091.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Diborane", + "title": "B-091" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/magnesium/srd13_B-092.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Boride", + "title": "B-092" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-093.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-093" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-094.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-094" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-095.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-095" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-096.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-096" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-097.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-097" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "boron/srd13_B-098.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Boron Oxide", + "title": "B-098" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-099.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-099" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borides/titanium/srd13_B-100.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Titanium Boride", + "title": "B-100" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "borates/lead/srd13_B-140.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Borate", + "title": "B-140" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "barium", + "title": "Barium" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "barium/srd13_Ba-001.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Barium", + "title": "Ba-001" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "barium/srd13_Ba-002.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Barium", + "title": "Ba-002" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "barium/srd13_Ba-003.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Barium", + "title": "Ba-003" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/calcium", + "title": "Calcium Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-004.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-004" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromines", + "title": "Bromimes" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-005.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Chloride", + "title": "Br-005" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-006.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Fluoride", + "title": "Br-006" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-007.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Fluoride", + "title": "Br-007" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-008.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine Fluoride", + "title": "Br-008" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-009.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sulfur Bromide Fluoride", + "title": "Br-009" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-010.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Hydrogen Bromide", + "title": "Br-010" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_Br-011.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromosilane", + "title": "Br-011" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-012.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Ammonium Bromide", + "title": "Br-012" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-013.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-013" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-014.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iodine Bromide", + "title": "Br-014" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/potassium", + "title": "Potassium Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-015.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "title": "Potassium Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-016.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-016" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-017.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-017" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-018.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-018" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/lithium", + "title": "Lithium Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-019.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-019" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-020.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-020" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-021.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-021" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-022.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-022" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-023.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-023" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-024.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Molybdenum Bromide", + "title": "Br-024" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_Br-025.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromoimidogen", + "title": "Br-025" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-026.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Nitrosyl Bromide", + "title": "Br-026" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-027.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-027" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/sodium", + "title": "Sodium Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/sodium/srd13_Br-028.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-028" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/sodium/srd13_Br-029.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-029" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/sodium/srd13_Br-030.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Sodium Bromide", + "title": "Br-030" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-031.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Phosphorus Bromide", + "title": "Br-031" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-032.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lead Bromide", + "title": "Br-032" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_Br-033.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromosilylidyne", + "title": "Br-033" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-034.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Strontium Bromide", + "title": "Br-034" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-035.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Titanium Bromide", + "title": "Br-035" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-036.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Tungsten Bromide", + "title": "Br-036" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/srd13_Br-037.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Zirconium Bromide", + "title": "Br-037" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-038.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine", + "title": "Br-038" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-039.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine", + "title": "Br-039" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromines/srd13_Br-040.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Bromine", + "title": "Br-040" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-041.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-041" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-042.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-042" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-043.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-043" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/calcium/srd13_Br-044.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Calcium Bromide", + "title": "Br-044" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/iron", + "title": "Iron Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-045.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-045" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-046.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-046" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-047.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-047" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/iron/srd13_Br-048.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Iron Bromide", + "title": "Br-048" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "srd13_Br-049.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Dibromosilane", + "title": "Br-049" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/mercury", + "title": "Mercury Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-050.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-050" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-051.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-051" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-052.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-052" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-053.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-053" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/mercury/srd13_Br-054.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Mercury Bromide", + "title": "Br-054" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/potassium/srd13_Br-055.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Potassium Bromide", + "title": "Br-055" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/lithium/srd13_Br-056.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Lithium Bromide", + "title": "Br-056" + }, + { + "@type": [ + "nrdp:Subcollection" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/Subcollection" + ], + "filepath": "bromides/magnesium", + "title": "Magnesium Bromide" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-057.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-057" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-058.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-058" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-059.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-059" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-060.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide", + "title": "Br-060" + }, + { + "@type": [ + "nrdp:DataFile", + "dcat:Distribution" + ], + "_extensionSchemas": [ + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#/definitions/DataFile" + ], + "filepath": "bromides/magnesium/srd13_Br-061.json", + "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json", + "mediaType": "application/json", + "describedBy": "http://www.nist.gov/srd/srd_data/srd13_janaf-data-defs.json", + "description": "Magnesium Bromide, Ion", + "title": "Br-061" + } + ], + "publisher": { + "@type": "org:Organization", + "name": "National Institute of Standards and Technology" + }, + "language": [ + "en" + ], + "bureauCode": [ + "006:55" + ], + "programCode": [ + "006:052" + ] +} diff --git a/model/examples/janaf.json b/model/examples/janaf.json index 1d3d778..d680c8b 100644 --- a/model/examples/janaf.json +++ b/model/examples/janaf.json @@ -1,7 +1,7 @@ { "@context": "https://data.nist.gov/od/dm/nerdm-pub-context.jsonld", - "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", - "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataPublication" ], + "_schema": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#", + "_extensionSchemas": [ "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataPublication" ], "@type": [ "nrd:SRD", "nrdp:DataPublication", "nrdp:PublicDataResource" ], "@id": "ark:/88434/sdp0fjspek351", @@ -114,7 +114,7 @@ "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 1 (AL-C", "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol1-Intro.pdf", "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ] }, { @@ -123,7 +123,7 @@ "label": "JPCRD Monograph: NIST-JANAF Thermochemical Tables, Pt. 2 (Cr-Zr)", "location": "http://kinetics.nist.gov/janaf/pdf/JANAF-FourthEd-1998-1Vol2-Intro.pdf", "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/DCiteReference" + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/DCiteReference" ] } ], @@ -473,7 +473,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-101.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-101.json", @@ -484,7 +484,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-102.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-102.json", @@ -495,7 +495,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-103.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-103.json", @@ -506,7 +506,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-104.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-104.json", @@ -517,7 +517,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-105.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-105.json", @@ -528,7 +528,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-106.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-106.json", @@ -539,7 +539,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-107.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-107.json", @@ -550,7 +550,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-108.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-108.json", @@ -561,7 +561,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-109.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-109.json", @@ -572,7 +572,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-110.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-110.json", @@ -583,7 +583,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-111.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-111.json", @@ -594,7 +594,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-112.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-112.json", @@ -605,7 +605,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-113.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-113.json", @@ -616,7 +616,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-114.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-114.json", @@ -627,7 +627,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-115.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-115.json", @@ -638,7 +638,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-116.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-116.json", @@ -649,7 +649,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-117.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-117.json", @@ -660,7 +660,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-118.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-118.json", @@ -671,7 +671,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-119.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-119.json", @@ -682,7 +682,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-120.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-120.json", @@ -693,7 +693,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-121.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-121.json", @@ -704,7 +704,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-122.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-122.json", @@ -715,7 +715,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-123.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-123.json", @@ -726,7 +726,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-124.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-124.json", @@ -737,11 +737,11 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-125.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-125.json", @@ -752,11 +752,11 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-126.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-126.json", @@ -767,7 +767,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-127.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-127.json", @@ -778,7 +778,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-128.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-128.json", @@ -789,7 +789,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-129.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-129.json", @@ -800,7 +800,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-130.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-130.json", @@ -811,7 +811,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-131.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-131.json", @@ -822,7 +822,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-132.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-132.json", @@ -833,7 +833,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-133.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-133.json", @@ -844,7 +844,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-134.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-134.json", @@ -855,7 +855,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-135.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-135.json", @@ -866,7 +866,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-136.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-136.json", @@ -877,7 +877,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-137.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-137.json", @@ -888,7 +888,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-138.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-138.json", @@ -899,7 +899,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-139.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-139.json", @@ -910,7 +910,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_janaf-zipfile.zip", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_janaf-zipfile.zip", @@ -921,7 +921,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_janaf.species.json", @@ -933,7 +933,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-001.json", @@ -944,7 +944,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-002.json", @@ -955,7 +955,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-003.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-003.json", @@ -966,7 +966,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-004.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-004.json", @@ -977,7 +977,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-005.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-005.json", @@ -988,7 +988,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-006.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-006.json", @@ -999,7 +999,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-007.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-007.json", @@ -1010,7 +1010,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-008.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-008.json", @@ -1021,7 +1021,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-009.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-009.json", @@ -1032,7 +1032,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-010.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-010.json", @@ -1043,7 +1043,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-011.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-011.json", @@ -1054,7 +1054,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-012.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-012.json", @@ -1065,7 +1065,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-013.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-013.json", @@ -1076,7 +1076,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-014.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-014.json", @@ -1087,7 +1087,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-015.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-015.json", @@ -1098,7 +1098,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-016.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-016.json", @@ -1109,7 +1109,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-017.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-017.json", @@ -1120,7 +1120,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-018.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-018.json", @@ -1131,7 +1131,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-019.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-019.json", @@ -1142,7 +1142,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-020.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-020.json", @@ -1153,7 +1153,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-021.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-021.json", @@ -1164,7 +1164,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-022.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-022.json", @@ -1175,7 +1175,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-023.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-023.json", @@ -1186,7 +1186,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-024.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-024.json", @@ -1197,7 +1197,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-025.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-025.json", @@ -1208,7 +1208,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-026.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-026.json", @@ -1219,7 +1219,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-027.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-027.json", @@ -1230,7 +1230,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-028.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-028.json", @@ -1241,7 +1241,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-029.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-029.json", @@ -1252,7 +1252,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-030.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-030.json", @@ -1263,7 +1263,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-031.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-031.json", @@ -1274,7 +1274,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-032.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-032.json", @@ -1285,7 +1285,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-033.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-033.json", @@ -1296,7 +1296,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-034.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-034.json", @@ -1307,7 +1307,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-035.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-035.json", @@ -1318,7 +1318,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-036.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-036.json", @@ -1329,7 +1329,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-037.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-037.json", @@ -1340,7 +1340,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-038.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-038.json", @@ -1351,7 +1351,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-039.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-039.json", @@ -1362,7 +1362,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-040.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-040.json", @@ -1373,7 +1373,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-041.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-041.json", @@ -1384,7 +1384,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-042.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-042.json", @@ -1395,7 +1395,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-043.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-043.json", @@ -1406,7 +1406,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-044.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-044.json", @@ -1417,7 +1417,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-045.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-045.json", @@ -1428,7 +1428,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-046.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-046.json", @@ -1439,7 +1439,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-047.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-047.json", @@ -1450,7 +1450,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-048.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-048.json", @@ -1461,7 +1461,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-049.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-049.json", @@ -1472,7 +1472,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-050.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-050.json", @@ -1483,7 +1483,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-051.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-051.json", @@ -1494,7 +1494,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-052.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-052.json", @@ -1505,7 +1505,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-053.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-053.json", @@ -1516,7 +1516,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-054.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-054.json", @@ -1527,7 +1527,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-055.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-055.json", @@ -1538,7 +1538,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-056.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-056.json", @@ -1549,7 +1549,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-057.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-057.json", @@ -1560,7 +1560,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-058.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-058.json", @@ -1571,7 +1571,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-059.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-059.json", @@ -1582,7 +1582,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-060.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-060.json", @@ -1593,7 +1593,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-061.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-061.json", @@ -1604,7 +1604,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-062.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-062.json", @@ -1615,7 +1615,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-063.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-063.json", @@ -1626,7 +1626,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-064.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-064.json", @@ -1637,7 +1637,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-065.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-065.json", @@ -1648,7 +1648,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-066.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-066.json", @@ -1659,7 +1659,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-067.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-067.json", @@ -1670,7 +1670,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-068.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-068.json", @@ -1681,7 +1681,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-069.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-069.json", @@ -1692,7 +1692,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-070.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-070.json", @@ -1703,7 +1703,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-071.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-071.json", @@ -1714,7 +1714,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-072.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-072.json", @@ -1725,7 +1725,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-073.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-073.json", @@ -1736,7 +1736,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-074.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-074.json", @@ -1747,7 +1747,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-075.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-075.json", @@ -1758,7 +1758,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-076.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-076.json", @@ -1769,7 +1769,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-077.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-077.json", @@ -1780,7 +1780,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-078.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-078.json", @@ -1791,7 +1791,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-079.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-079.json", @@ -1802,7 +1802,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-080.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-080.json", @@ -1813,7 +1813,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-081.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-081.json", @@ -1824,7 +1824,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-082.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-082.json", @@ -1835,7 +1835,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-083.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-083.json", @@ -1846,7 +1846,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-084.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-084.json", @@ -1857,7 +1857,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-085.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-085.json", @@ -1868,7 +1868,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Rn-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Rn-002.json", @@ -1879,7 +1879,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-086.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-086.json", @@ -1890,7 +1890,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-087.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-087.json", @@ -1901,7 +1901,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-088.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-088.json", @@ -1912,7 +1912,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-089.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-089.json", @@ -1923,7 +1923,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-090.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-090.json", @@ -1934,7 +1934,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-091.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-091.json", @@ -1945,7 +1945,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-092.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-092.json", @@ -1956,7 +1956,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-093.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-093.json", @@ -1967,7 +1967,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-094.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-094.json", @@ -1978,7 +1978,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-095.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-095.json", @@ -1989,7 +1989,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-096.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-096.json", @@ -2000,7 +2000,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-097.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-097.json", @@ -2011,7 +2011,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-098.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-098.json", @@ -2022,7 +2022,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-099.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-099.json", @@ -2033,7 +2033,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-100.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-100.json", @@ -2044,7 +2044,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-101.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-101.json", @@ -2055,7 +2055,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-102.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-102.json", @@ -2066,7 +2066,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-103.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-103.json", @@ -2077,7 +2077,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-104.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-104.json", @@ -2088,7 +2088,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-105.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-105.json", @@ -2099,7 +2099,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-106.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-106.json", @@ -2110,7 +2110,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-107.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-107.json", @@ -2121,7 +2121,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-108.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-108.json", @@ -2132,7 +2132,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-109.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-109.json", @@ -2143,7 +2143,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-110.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-110.json", @@ -2154,7 +2154,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-111.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-111.json", @@ -2165,7 +2165,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Al-112.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Al-112.json", @@ -2176,7 +2176,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Ar-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-001.json", @@ -2187,7 +2187,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Ar-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ar-002.json", @@ -2198,7 +2198,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-001.json", @@ -2209,7 +2209,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-002.json", @@ -2220,7 +2220,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-003.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-003.json", @@ -2231,7 +2231,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-004.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-004.json", @@ -2242,7 +2242,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-005.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-005.json", @@ -2253,7 +2253,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-006.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-006.json", @@ -2264,7 +2264,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-007.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-007.json", @@ -2275,7 +2275,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-008.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-008.json", @@ -2286,7 +2286,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-009.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-009.json", @@ -2297,7 +2297,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-010.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-010.json", @@ -2308,7 +2308,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-011.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-011.json", @@ -2319,7 +2319,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-012.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-012.json", @@ -2330,7 +2330,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-013.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-013.json", @@ -2341,7 +2341,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-014.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-014.json", @@ -2352,7 +2352,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-015.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-015.json", @@ -2363,7 +2363,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-016.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-016.json", @@ -2374,7 +2374,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-017.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-017.json", @@ -2385,7 +2385,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-018.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-018.json", @@ -2396,7 +2396,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-019.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-019.json", @@ -2407,7 +2407,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-020.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-020.json", @@ -2418,7 +2418,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-021.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-021.json", @@ -2429,7 +2429,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-022.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-022.json", @@ -2440,7 +2440,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-023.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-023.json", @@ -2451,7 +2451,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-024.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-024.json", @@ -2462,7 +2462,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-025.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-025.json", @@ -2473,7 +2473,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-026.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-026.json", @@ -2484,7 +2484,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-027.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-027.json", @@ -2495,7 +2495,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-028.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-028.json", @@ -2506,7 +2506,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-029.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-029.json", @@ -2517,7 +2517,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-030.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-030.json", @@ -2528,7 +2528,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-031.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-031.json", @@ -2539,7 +2539,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-032.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-032.json", @@ -2550,7 +2550,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-033.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-033.json", @@ -2561,7 +2561,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-034.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-034.json", @@ -2572,7 +2572,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-035.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-035.json", @@ -2583,7 +2583,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-036.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-036.json", @@ -2594,7 +2594,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-037.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-037.json", @@ -2605,7 +2605,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-038.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-038.json", @@ -2616,7 +2616,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-039.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-039.json", @@ -2627,7 +2627,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-040.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-040.json", @@ -2638,7 +2638,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-041.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-041.json", @@ -2649,7 +2649,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-042.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-042.json", @@ -2660,7 +2660,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-043.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-043.json", @@ -2671,7 +2671,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-044.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-044.json", @@ -2682,7 +2682,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-045.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-045.json", @@ -2693,7 +2693,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-046.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-046.json", @@ -2704,7 +2704,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-047.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-047.json", @@ -2715,7 +2715,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-048.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-048.json", @@ -2726,7 +2726,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-049.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-049.json", @@ -2737,7 +2737,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-050.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-050.json", @@ -2748,7 +2748,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-051.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-051.json", @@ -2759,7 +2759,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-052.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-052.json", @@ -2770,7 +2770,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-053.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-053.json", @@ -2781,7 +2781,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-054.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-054.json", @@ -2792,7 +2792,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-055.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-055.json", @@ -2803,7 +2803,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-056.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-056.json", @@ -2814,7 +2814,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-057.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-057.json", @@ -2825,7 +2825,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-058.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-058.json", @@ -2836,7 +2836,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-059.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-059.json", @@ -2847,7 +2847,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-060.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-060.json", @@ -2858,7 +2858,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-061.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-061.json", @@ -2869,7 +2869,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-062.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-062.json", @@ -2880,7 +2880,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-063.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-063.json", @@ -2891,7 +2891,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-064.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-064.json", @@ -2902,7 +2902,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-065.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-065.json", @@ -2913,7 +2913,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-066.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-066.json", @@ -2924,7 +2924,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-067.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-067.json", @@ -2935,7 +2935,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-068.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-068.json", @@ -2946,7 +2946,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-069.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-069.json", @@ -2957,7 +2957,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-070.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-070.json", @@ -2968,7 +2968,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-071.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-071.json", @@ -2979,7 +2979,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-072.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-072.json", @@ -2990,7 +2990,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-073.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-073.json", @@ -3001,7 +3001,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-074.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-074.json", @@ -3012,7 +3012,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-075.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-075.json", @@ -3023,7 +3023,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-076.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-076.json", @@ -3034,7 +3034,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-077.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-077.json", @@ -3045,7 +3045,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-078.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-078.json", @@ -3056,7 +3056,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-079.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-079.json", @@ -3067,7 +3067,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-080.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-080.json", @@ -3078,7 +3078,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-081.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-081.json", @@ -3089,7 +3089,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-082.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-082.json", @@ -3100,7 +3100,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-083.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-083.json", @@ -3111,7 +3111,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-084.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-084.json", @@ -3122,7 +3122,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-085.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-085.json", @@ -3133,7 +3133,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-086.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-086.json", @@ -3144,7 +3144,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-087.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-087.json", @@ -3155,7 +3155,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-088.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-088.json", @@ -3166,7 +3166,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-089.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-089.json", @@ -3177,7 +3177,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-090.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-090.json", @@ -3188,7 +3188,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-091.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-091.json", @@ -3199,7 +3199,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-092.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-092.json", @@ -3210,7 +3210,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-093.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-093.json", @@ -3221,7 +3221,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-094.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-094.json", @@ -3232,7 +3232,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-095.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-095.json", @@ -3243,7 +3243,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-096.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-096.json", @@ -3254,7 +3254,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-097.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-097.json", @@ -3265,7 +3265,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-098.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-098.json", @@ -3276,7 +3276,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-099.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-099.json", @@ -3287,7 +3287,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-100.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-100.json", @@ -3298,7 +3298,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_B-140.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_B-140.json", @@ -3309,7 +3309,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Ba-001.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-001.json", @@ -3320,7 +3320,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Ba-002.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-002.json", @@ -3331,7 +3331,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Ba-003.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Ba-003.json", @@ -3342,7 +3342,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-004.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-004.json", @@ -3353,7 +3353,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-005.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-005.json", @@ -3364,7 +3364,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-006.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-006.json", @@ -3375,7 +3375,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-007.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-007.json", @@ -3386,7 +3386,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-008.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-008.json", @@ -3397,7 +3397,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-009.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-009.json", @@ -3408,7 +3408,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-010.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-010.json", @@ -3419,7 +3419,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-011.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-011.json", @@ -3430,7 +3430,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-012.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-012.json", @@ -3441,7 +3441,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-013.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-013.json", @@ -3452,7 +3452,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-014.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-014.json", @@ -3463,7 +3463,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-015.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-015.json", @@ -3474,7 +3474,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-016.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-016.json", @@ -3485,7 +3485,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-017.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-017.json", @@ -3496,7 +3496,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-018.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-018.json", @@ -3507,7 +3507,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-019.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-019.json", @@ -3518,7 +3518,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-020.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-020.json", @@ -3529,7 +3529,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-021.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-021.json", @@ -3540,7 +3540,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-022.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-022.json", @@ -3551,7 +3551,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-023.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-023.json", @@ -3562,7 +3562,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-024.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-024.json", @@ -3573,7 +3573,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-025.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-025.json", @@ -3584,7 +3584,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-026.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-026.json", @@ -3595,7 +3595,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-027.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-027.json", @@ -3606,7 +3606,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-028.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-028.json", @@ -3617,7 +3617,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-029.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-029.json", @@ -3628,7 +3628,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-030.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-030.json", @@ -3639,7 +3639,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-031.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-031.json", @@ -3650,7 +3650,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-032.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-032.json", @@ -3661,7 +3661,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-033.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-033.json", @@ -3672,7 +3672,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-034.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-034.json", @@ -3683,7 +3683,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-035.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-035.json", @@ -3694,7 +3694,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-036.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-036.json", @@ -3705,7 +3705,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-037.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-037.json", @@ -3716,7 +3716,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-038.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-038.json", @@ -3727,7 +3727,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-039.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-039.json", @@ -3738,7 +3738,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-040.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-040.json", @@ -3749,7 +3749,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-041.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-041.json", @@ -3760,7 +3760,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-042.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-042.json", @@ -3771,7 +3771,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-043.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-043.json", @@ -3782,7 +3782,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-044.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-044.json", @@ -3793,7 +3793,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-045.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-045.json", @@ -3804,7 +3804,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-046.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-046.json", @@ -3815,7 +3815,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-047.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-047.json", @@ -3826,7 +3826,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-048.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-048.json", @@ -3837,7 +3837,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-049.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-049.json", @@ -3848,7 +3848,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-050.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-050.json", @@ -3859,7 +3859,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-051.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-051.json", @@ -3870,7 +3870,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-052.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-052.json", @@ -3881,7 +3881,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-053.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-053.json", @@ -3892,7 +3892,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-054.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-054.json", @@ -3903,7 +3903,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-055.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-055.json", @@ -3914,7 +3914,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-056.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-056.json", @@ -3925,7 +3925,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-057.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-057.json", @@ -3936,7 +3936,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-058.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-058.json", @@ -3947,7 +3947,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-059.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-059.json", @@ -3958,7 +3958,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-060.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-060.json", @@ -3969,7 +3969,7 @@ { "@type": [ "nrdp:DataFile", "dcat:Distribution" ], "_extensionSchemas": [ - "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#/definitions/DataFile" + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#/definitions/DataFile" ], "filepath": "srd13_Br-061.json", "downloadURL": "http://www.nist.gov/srd/srd_data/srd13_Br-061.json", diff --git a/model/examples/schemaLocation.json b/model/examples/schemaLocation.json index 0c4be9e..132d86e 100644 --- a/model/examples/schemaLocation.json +++ b/model/examples/schemaLocation.json @@ -3,8 +3,16 @@ "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1": "../nerdm-pub-schema-0.1.json", "https://www.nist.gov/od/dm/nerdm-schema/v0.1#": "../nerdm-schema-0.1.json", "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.1#": "../nerdm-pub-schema-0.1.json", - "https://www.nist.gov/od/dm/nerdm-schema/v0.2": "../nerdm-schema.json", - "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.2": "../nerdm-pub-schema.json", - "https://www.nist.gov/od/dm/nerdm-schema/v0.2#": "../nerdm-schema.json", - "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.2#": "../nerdm-pub-schema.json" + "https://www.nist.gov/od/dm/nerdm-schema/v0.2": "../nerdm-schema-0.2.json", + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.2": "../nerdm-pub-schema-0.2.json", + "https://www.nist.gov/od/dm/nerdm-schema/v0.2#": "../nerdm-schema-0.2.json", + "https://www.nist.gov/od/dm/nerdm-schema/pub/v0.2#": "../nerdm-pub-schema-0.2.json", + "https://data.nist.gov/od/dm/nerdm-schema/v0.2": "../nerdm-schema-0.2.json", + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2": "../nerdm-pub-schema-0.2.json", + "https://data.nist.gov/od/dm/nerdm-schema/v0.2#": "../nerdm-schema-0.2.json", + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#": "../nerdm-pub-schema-0.2.json", + "https://data.nist.gov/od/dm/nerdm-schema/v0.3": "../nerdm-schema.json", + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3": "../nerdm-pub-schema.json", + "https://data.nist.gov/od/dm/nerdm-schema/v0.3#": "../nerdm-schema.json", + "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#": "../nerdm-pub-schema.json" } diff --git a/model/nerdm-context.jsonld b/model/nerdm-context.jsonld index e5f0e26..57326f7 100644 --- a/model/nerdm-context.jsonld +++ b/model/nerdm-context.jsonld @@ -1,25 +1,58 @@ { "@context": { - "dc": "http://purl.org/dc/terms/", + "@vocab": "http://www.w3.org/ns/dcat#", "dcat": "http://www.w3.org/ns/dcat#", - "xs": "http://www.w3.org/2001/XMLSchema", - "foaf": "http://xmlns.com/foaf/0.1/", - "vivo": "http://vivoweb.org/ontology/core#", + "dc": "http://purl.org/dc/terms/", + "org": "http://www.w3.org/ns/org#", + "xs": "http://www.w3.org/2001/XMLSchema#", "ore": "http://www.openarchives.org/ore/terms/", - "ov": "http://vocab.org/open/", - "dpr": "https://nist.org/dp/dpr/", "vcard": "http://www.w3.org/2006/vcard/ns#", - "bibo": "http://purl.org/ontology/bibo/", - "schema": "http://schema.org/", - "npg": "http://ns.nature.com/terms/", "skos": "http://www.w3.org/2004/02/skos/core#", + "deo": "http://purl.org/spar/deo/", "pod": "https://project-open-data.cio.gov/v1.1/schema#", - "rmmperson": "https://nist.org/od/dm/person/", "nrd": "https://data.nist.gov/od/dm/nerdm-schema/v0.1#", - "nrdp": "https://data.nist.gov/od/dm/nerdm-pub-schema/v0.1#" - } + "sdpperson": "https://nist.org/od/dm/person/", + "npg:": "http://ns.nature.com/terms/", + "doi": "https://doi.org/", + "ark": "https://data.nist.gov/od/id/ark:", + + "title": "dc:title", + "description": "dc:description", + "modified": { + "@id": "dc:modified", + "@type": "xs:date" + }, + "issued": { + "@id": "dc:issued", + "@type": "xs:date" + }, + "replaces": { + "@id": "dc:replaces", + "@container": "@set" + }, + "isReplacedBy": "dc:isReplacedBy", + "publisher": "dc:publisher", + "accessLevel": "pod:accessLevel", + "license": "dc:license", + "rights": "dc:rights", + "isPartOf": "dc:isPartOf", + "language": "dc:language", + "references": "dc:references", + "label": "rdfs:prefLabel", + "theme": "dcat:themeTaxonomy", + "subOrganizationOf": "org:subOrganizationOf", + "name": "skos:prefLabel", + "fn": "vcard:fn", + "hasEmail": "vcard:email", + "proxyFor": "ore:proxyFor", + + "authors": { + "@id": "schema:author", + "@container": "@list" + } + }, "@id": "https://data.nist.gov/od/dm/nerdm-context.jsonld", - "title": "The NIST Extended Resource Data model (NERDm) JSON-LD context", - "description": "This is the base context definition for encoding NERDm metadata in JSON-LD format" + "title": "The core NIST Extended Resource Data model (NERDm) JSON-LD context", + "description": "This is the base context definition for encoding core NERDm metadata in JSON-LD format" } diff --git a/model/nerdm-pub-context.jsonld b/model/nerdm-pub-context.jsonld index 8b9bc0f..57326f7 100644 --- a/model/nerdm-pub-context.jsonld +++ b/model/nerdm-pub-context.jsonld @@ -50,7 +50,7 @@ "@id": "schema:author", "@container": "@list" } - } + }, "@id": "https://data.nist.gov/od/dm/nerdm-context.jsonld", "title": "The core NIST Extended Resource Data model (NERDm) JSON-LD context", diff --git a/model/nerdm-pub-schema-0.3.json b/model/nerdm-pub-schema-0.3.json new file mode 100644 index 0000000..3943b96 --- /dev/null +++ b/model/nerdm-pub-schema-0.3.json @@ -0,0 +1,756 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "$extensionSchemas": ["https://data.nist.gov/od/dm/enhanced-json-schema/v0.1#"], + "id": "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#", + "rev": "wd1", + "title": "The NERDm extension metadata for Public Data", + "description": "These classes extend the based NERDm schema to different types of published data", + "definitions": { + + "PublicDataResource": { + "description": "a resource that can/should have a record in NIST's public data listing (PDL)", + "notes": [ + "This must be convertable to a compliant and complete POD record; thus, this class adds all remaining POD elements missing from the core" + ], + "allOf": [ + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Resource"}, + { + "type": "object", + "properties": { + + "accrualPeriodicity": { + "title": "Frequency", + "description": "Frequency with which dataset is published.", + "anyOf": [ + { + "enum": [ + "irregular" + ], + "valueDocumentation": { + "irregular": { + "description": "the data is updated or republished on an irregular schedule" + } + } + }, + { + "type": "string", + "pattern": "^R\\/P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$" + }, + { + "type": "null" + } + ], + "asOntology": { + "@conxtext": "profile-schema-onto.json", + "prefLabel": "Frequency", + "referenceProperty": "dc:accrualPeriodicity" + } + }, + + "bureauCode": { + "title": "Bureau Code", + "description": "an identifier provided by the OMB Circular A-11, Appendix C that identifies the originating federal agency", + "notes": [ + "OMB Circular A-11, Appendix C is available via http://www.whitehouse.gov/sites/default/files/omb/assets/a11_current_year/app_c.pdf", + "A machine-readable listing of the defined codes is available via https://project-open-data.cio.gov/data/omb_bureau_codes.csv", + "Codes have the format of 015:01" + ], + "type": "array", + "items": { + "type": "string", + "pattern": "^[0-9]{3}:[0-9]{2}$" + }, + "uniqueItems": true, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Bureau Code", + "referenceProperty": "pod:bureauCode" + } + }, + + "programCode": { + "title": "Program Code", + "description": "an identifier provided by the Federal Program Inventory that identifies the primary program related to this data asset", + "notes": [ + "A machine-readable listing of the defined codes is available via https://www.performance.gov/sites/default/files/files/FederalProgramInventory_FY13_MachineReadable_091613.xls", + "Codes have the format of 015:001" + ], + "type": "array", + "items": { + "type": "string", + "pattern": "^[0-9]{3}:[0-9]{3}$" + }, + "uniqueItems": true, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Program Code", + "referenceProperty": "pod:programCode" + } + }, + + "dataQuality": { + "title": "Data Quality", + "description": "Whether the dataset meets the agency's Information Quality Guidelines", + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Quality", + "referenceProperty": "pod:dataQuality" + } + }, + + "primaryITInvestmentUII": { + "title": "Primary IT Investment UII", + "description": "The IT Unique Investment Identifier (UII) that is associated with this dataset", + "anyOf": [ + { + "type": "string", + "pattern": "[0-9]{3}-[0-9]{9}" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Primary IT Investment UII", + "referenceProperty": "pod:primaryITInvestmentUII" + } + }, + + "systemOfRecords": { + "title": "System of Records", + "description": "The URL to the System of Records Notice related to this dataset if is so designated under the Privacy Act of 1974", + "anyOf": [ + { + "type": "string", + "minLength": 1 + }, + { + "type": "null" + } + ] + }, + + "dataHierarchy": { + "description": "a hierarchical organization of the Subcollection and DataFile components", + "notes": [ + "This optional property can be provided to aid display of the data components" + ], + "type": "array", + "items": { "$ref": "#/definitions/DataHierarchyNode"} + } + + }, + "required": [ "bureauCode", "programCode", "ediid" ] + } + ] + }, + + "DataHierarchyNode": { + "description": "a description of a node (either a DataFile or a Subcollection) in a data hierarchy", + "notes": [ + "Other metadata related to the node may appear as additional properties of this object" + ], + "type": "object", + "properties": { + "filepath": { + "description": "the name of the node reflecting its position in the hierarchy", + "notes": [ + "This value must uniquely match a component listed under a resource's components" + ], + "type": "string" + }, + + "children": { + "description": "the nodes that are direct children of this node", + "notes": [ + "This should only appear if the node is of type Subcollection." + ], + "type": "array", + "items": { "$ref": "#/definitions/DataHierarchyNode" } + } + }, + "required": [ "filepath" ] + }, + + "DownloadableFile": { + "description": "a description of a downloadable, finite stream of data", + "allOf": [ + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, + { + "properties": { + + "filepath": { + "description": "a name for the data file reflecting its hierarchical location in the data source collection", + "notes": [ + "Forward slashes delimit the hierarchical names in the path", + "If there are no slashes in this value, this file is assumed to be at the top of the file hierarchy", + "The base name of this value (i.e. the last field in the path) can be used as the default filename to give to the file if downloaded.", + "The component title may have the same value." + ], + "type": "string" + }, + + "downloadURL": { + "title": "Download URL", + "description": "URL providing direct access to a downloadable file of a dataset", + "type": "string", + "format": "uri", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Download URL", + "referenceProperty": "dcat:downloadURL" + } + }, + + "mediaType": { + "title": "Media Type", + "description": "The machine-readable file format (IANA Media Type or MIME Type) of the file’s downloadURL", + "anyOf": [ + { + "pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$", + "type": "string" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Media Type", + "referenceProperty": "dcat:mediaType" + } + }, + + "format": { + "title": "Format", + "description": "A human-readable description of the file format of a distribution", + "$ref": "#/definitions/Format", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Format", + "referenceProperty": "dc:format" + } + }, + + "checksum": { + "title": "Checksum", + "description": "a checksum for the file", + "$ref": "#/definitions/Checksum" + }, + + "size": { + "description": "the size of the file in bytes", + "type": "integer", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "file size", + "referenceProperty": "schema:fileSize" + } + } + + }, + "required": [ "filepath" ], + + "dependencies": { + "downloadURL": { + "properties": { + "mediaType": { + "type": "string", + "pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$" + } + }, + "required": [ "mediaType" ] + } + } + } + ] + }, + + "DataFile": { + "description": "a description of a downloadable file that was provided by the authors (as opposed to a system or checksum file produced by the publication system).", + "allOf": [ + { "$ref": "#/definitions/DownloadableFile" }, + { + "properties": { + "describedBy": { + "title": "Data Dictionary", + "description": "URL to the data dictionary for the distribution found at the downloadURL", + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Dictionary", + "referenceProperty": "http://www.w3.org/2007/05/powder-s#describedby" + } + }, + + "describedByType": { + "title": "Data Dictionary Type", + "description": "The machine-readable file format (IANA Media Type or MIME Type) of the file’s describedBy URL", + "anyOf": [ + { + "pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$", + "type": "string" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Dictionary Type", + "referenceProperty": "pod:describedByType" + } + } + } + } + ] + }, + + "ChecksumFile": { + "description": "a downloadable file that contains the checksum value for a DataFile.", + "allOf": [ + { "$ref": "#/definitions/DownloadableFile" }, + { + "properties": { + "algorithm": { + "description": "the algorithm used to produce the checksum hash", + "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Topic" + }, + + "valid": { + "type": "boolean", + "description": "A flag, if True, indicating the the hash value contained in this ChecksumFile is confirmed to be correct for its associated data file." + }, + + "describes": { + "type": "string", + "format": "uri-reference", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Checksum for", + "referenceProperty": "ov:describes" + } + } + } + } + ] + }, + + "Checksum": { + "description": "a checksum with its algorithm noted", + "type": "object", + "properties": { + "algorithm": { + "description": "the algorithm used to produce the checksum hash", + "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Topic" + }, + "hash": { + "description": "the checksum value", + "type": "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "checksum", + "referenceProperty": "dataid:checksum" + } + } + }, + "required": [ "hash" ] + }, + + "Subcollection": { + "description": "A grouping of components within a named subcollection of the resource", + "notes": [ + "This Component subtype implements hierarchical resources; a subcollection is equivalent to a directory that can contain other components, including other subcollections." + ], + "allOf": [ + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, + { + "properties": { + + "filepath": { + "description": "a name for the data file reflecting its hierarchical location in the data source collection", + "notes": [ + "Forward slashes delimit the hierarchical names in the path", + "If there are no slashes in this value, this file is assumed to be at the top of the file hierarchy", + "The base name of this value (i.e. the last field in the path) can be used as the default filename to give to the file if downloaded.", + "The component title may have the same value." + ], + "type": "string" + }, + + "contains": { + "description": "a listing of resource components that are directly part of this subcollection", + "notes": [ + "Each item is a URI identifier (possibly abbreviated)" + ], + "type": "array", + "items": { + "type": "string" + }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "contains", + "referenceProperty": "ldp:contains" + } + }, + + "hasParent": { + "description": "The identifier for the parent collection that contains this subcollection", + "type": "string" + } + + }, + "required": [ "filepath" ] + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Subcollection", + "referenceProperty": "fedora:Container" + } + }, + + "AccessPage": { + "description": "a web page that provides indirect access to the resource", + "notes": [ + "This type should not be used to capture a resource's home page as this would be redundant with the landingPage resource property." + ], + "allOf": [ + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, + { + "properties": { + "accessURL": { + "description": "the URL for accessing this indirect access to the resource", + "type": "string", + "format": "uri" + }, + + "format": { + "title": "Format", + "description": "A human-readable description of the file format of a distribution", + "$ref": "#/definitions/Format", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Format", + "referenceProperty": "dc:format" + } + } + }, + "required": [ "accessURL" ] + } + ] + }, + + "SearchPage": { + "description": "a web page that can be used to search the contents of the resource", + "notes": [ + "Provide this component even if the accessURL is the same as the landing page; this indicates that the landing page provides a search tool in it." + ], + "allOf": [ + { "$ref": "#/definitions/AccessPage" } + ] + }, + + "API": { + "description": "an application programming interface to the resource", + "notes": [ + "This is typically a web-based interface", + "When converting an API component to a POD distribution, the output format should set to 'API'." + ], + "allOf": [ + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, + { + "properties": { + "accessURL": { + "description": "the URL for accessing this indirect access to the resource", + "type": "string", + "format": "uri" + }, + + "describedBy": { + "title": "API Description", + "description": "URL to a formal or informal description of the API", + "notes": [ + "Use describedByType to help distinguish between formal and informal (i.e. human readable) descriptions." + ], + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Dictionary", + "referenceProperty": "http://www.w3.org/2007/05/powder-s#describedby" + } + }, + + "describedByType": { + "title": "API Descriptions Type", + "description": "The machine-readable file format (IANA Media Type or MIME Type) of the file’s describedBy URL", + "anyOf": [ + { + "pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$", + "type": "string" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Dictionary Type", + "referenceProperty": "pod:describedByType" + } + } + } + } + ] + }, + + "Format": { + "description": "a description of a file format that a file employs", + "type": "object", + "properties": { + "description": { + "description": "a human-readable description of the format", + "type": "string" + }, + + "scheme": { + "description": "a URI that identifies the format type registry or identification system that the value is defined in.", + "type": "string", + "format": "uri", + "asOnotology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Schema", + "referenceProperty": "vold:vocabulary" + } + }, + + "@id": { + "description": "the unique identifier for the format", + "type": "string", + "format": "uri" + }, + + "tag": { + "description": "a short, display-able token or abbreviation for the format", + "notes": [ + "As a token, it is intended that applications can search for this value and find all files having the same format. Thus, regardless of whether the @id field is provided, all references to the same format should use the same tag value." + ], + "type": "string" + } + } + }, + + "DataPublication": { + "description": "Data presented by one or more authors as citable publication", + "allOf": [ + { "$ref": "#/definitions/PublicDataResource" }, + { + "type": "object", + "properties": { + "subtitle": { + "description": "a secondary or sub-title for the resource", + "type": "array", + "items": { "type": "string" } + }, + "aka": { + "description": "other (unofficial) titles that this resource is sometimes known as", + "type": "array", + "items": { "type": "string" } + }, + "authors": { + "description": "the ordered list of authors of this data publication", + "notes": [ + "Authors should generally be assumed to be considered creators of the data; where this is is not true or insufficient, the contributors property can be used ot add or clarify who contributed to data creation." + ], + "type": "array", + "items": { "$ref": "#/definitions/Person" }, + "asOntology": { + "@conxtext": "profile-schema-onto.json", + "prefLabel": "Authors", + "referenceProperty": "bibo:authorList" + } + }, + "recommendedCitation": { + "description": "a recommended formatting of a citation to this data publication", + "type": "string", + "asOntology": { + "@conxtext": "profile-schema-onto.json", + "prefLabel": "Cite as", + "referenceProperty": "dc:bibliographicCitation" + } + } + } + } + ] + }, + + "Person": { + "description": "an identification a Person contributing to the publication of a resource", + "notes": [ + "The information here is intended to reflect information about the person at teh time of the contribution or publication." + ], + "type": "object", + "properties": { + "@type": { + "description": "the class indicating that this is a Person", + "type": "string", + "enum": [ + "foaf:Person" + ] + }, + + "fn": { + "description": "the author's full name in the preferred format", + "type": "string", + "minLength": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Name", + "referenceProperty": "vcard:fn" + } + }, + + "givenName": { + "description": "the author's given name", + "notes": [ + "Often referred to in English-speaking conventions as the first name" + ], + "type": "string", + "minLength": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "First Name", + "referenceProperty": "foaf:givenName" + } + }, + + "familyName": { + "description": "the author's family name", + "notes": [ + "Often referred to in English-speaking conventions as the last name" + ], + "type": "string", + "minLength": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Last Name", + "referenceProperty": "foaf:familyName" + } + }, + + "middleName": { + "description": "the author's middle names or initials", + "notes": [ + "Often referred to in English-speaking conventions as the first name" + ], + "type": "string", + "minLength": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Middle Names or Initials", + "referenceProperty": "vcard:middleName" + } + }, + + "orcid": { + "description": "the author's ORCID", + "notes:": [ + "The value should not include the resolving URI base (http://orcid.org)" + ], + "$ref": "#/definitions/ORCIDpath", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Last Name", + "referenceProperty": "vivo:orcidid" + } + }, + + "affiliation": { + "description": "The institution the person was affiliated with at the time of publication", + "type": "array", + "items": { + "$ref": "#/definitions/Affiliation" + }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Affiliation", + "referenceProperty": "schema:affiliation" + } + }, + + "proxyFor": { + "description": "a local identifier representing this person", + "notes": [ + "This identifier is expected to point to an up-to-date description of the person as known to the local system. The properties associated with that identifier may be different those given in the current record." + ], + "type": "string", + "format": "uri", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Current Person Information", + "referenceProperty": "ore:proxyFor" + } + } + }, + "required": [ "fn" ] + }, + + "ORCIDpath": { + "description": "the format of the path portion of an ORCID identifier (i.e. without the preceding resolver URL base)", + "type": "string", + "pattern": "^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]$" + }, + + "Affiliation": { + "description": "a description of an organization that a person is a member of", + "allOf": [ + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/ResourceReference" }, + { + "properties": { + "subunits": { + "description": "sub-units of the main organization the that the person is a member of", + "notes": [ + "The order of the array elements should be treated as significant. Typically (though not required), each element will reflect a more specific unit contained in unit nameed in the previous element." + ], + "type": "array", + "items": { "type": "string" }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Sub-unit", + "referenceProperty": "org:OrganizationalUnit" + } + } + }, + "required": [ "@type" ] + } + ] + } + + } +} + diff --git a/model/nerdm-pub-schema.json b/model/nerdm-pub-schema.json index 0e9ed3b..3943b96 100644 --- a/model/nerdm-pub-schema.json +++ b/model/nerdm-pub-schema.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-04/schema#", "$extensionSchemas": ["https://data.nist.gov/od/dm/enhanced-json-schema/v0.1#"], - "id": "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.2#", - "rev": "wd2", + "id": "https://data.nist.gov/od/dm/nerdm-schema/pub/v0.3#", + "rev": "wd1", "title": "The NERDm extension metadata for Public Data", "description": "These classes extend the based NERDm schema to different types of published data", "definitions": { @@ -13,7 +13,7 @@ "This must be convertable to a compliant and complete POD record; thus, this class adds all remaining POD elements missing from the core" ], "allOf": [ - { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Resource"}, + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Resource"}, { "type": "object", "properties": { @@ -184,7 +184,7 @@ "DownloadableFile": { "description": "a description of a downloadable, finite stream of data", "allOf": [ - { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Component" }, + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, { "properties": { @@ -331,7 +331,7 @@ "properties": { "algorithm": { "description": "the algorithm used to produce the checksum hash", - "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Topic" + "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Topic" }, "valid": { @@ -359,7 +359,7 @@ "properties": { "algorithm": { "description": "the algorithm used to produce the checksum hash", - "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Topic" + "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Topic" }, "hash": { "description": "the checksum value", @@ -380,7 +380,7 @@ "This Component subtype implements hierarchical resources; a subcollection is equivalent to a directory that can contain other components, including other subcollections." ], "allOf": [ - { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Component" }, + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, { "properties": { @@ -433,7 +433,7 @@ "This type should not be used to capture a resource's home page as this would be redundant with the landingPage resource property." ], "allOf": [ - { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Component" }, + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, { "properties": { "accessURL": { @@ -475,7 +475,7 @@ "When converting an API component to a POD distribution, the output format should set to 'API'." ], "allOf": [ - { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/Component" }, + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/Component" }, { "properties": { "accessURL": { @@ -729,7 +729,7 @@ "Affiliation": { "description": "a description of an organization that a person is a member of", "allOf": [ - { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/ResourceReference" }, + { "$ref": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/ResourceReference" }, { "properties": { "subunits": { diff --git a/model/nerdm-schema-0.2.json b/model/nerdm-schema-0.2.json index 0e30c04..e41da89 100644 --- a/model/nerdm-schema-0.2.json +++ b/model/nerdm-schema-0.2.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-04/schema#", "$extensionSchemas": ["https://www.nist.gov/od/dm/enhanced-json-schema/v0.1#"], "id": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", - "rev": "wd1", + "rev": "wd2", "title": "The JSON Schema for the NIST Extended Resource Data model (NERDm)", "description": "A JSON Schema specfying the core NERDm classes", "definitions": { @@ -483,7 +483,10 @@ "anyOf": [ { "type": "string", - "enum": [ "deo:BibliographicReference" ] + "enum": [ + "deo:BibliographicReference", + "org:Organization" + ] }, { "type": "array", diff --git a/model/nerdm-schema-0.3.json b/model/nerdm-schema-0.3.json new file mode 100644 index 0000000..be41180 --- /dev/null +++ b/model/nerdm-schema-0.3.json @@ -0,0 +1,1163 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "$extensionSchemas": ["https://www.nist.gov/od/dm/enhanced-json-schema/v0.1#"], + "id": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#", + "rev": "wd1", + "title": "The JSON Schema for the NIST Extended Resource Data model (NERDm)", + "description": "A JSON Schema specfying the core NERDm classes", + "definitions": { + + "Resource": { + "description": "a resource (e.g. data collection, service, website or tool) that can participate in a data-driven application", + "properties": { + + "title": { + "title": "Title", + "description": "Human-readable, descriptive name of the resource", + "notes": [ + "Acronyms should be avoided" + ], + "type": "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Title", + "referenceProperty": "dc:title" + } + }, + + "version": { + "title": "Version", + "description": "a string indicating the version of the release of this resource", + "type": "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Version", + "referenceProperty": "schema:version" + } + }, + + "versionHistory": { + "title": "History", + "description": "a list describing the release of different versions of this resource", + "type": "array", + "items": { "$ref": "#/definitions/VersionRelease" } + }, + + "replaces": { + "title": "Replaces", + "description": "a listing of other existing resources that are deprecated by this resource", + "type": "array", + "items": { + "allOf": [ + { "$ref": "#/definitions/RelatedResource" }, + { "required": [ "@id", "proxyFor", "label", "issued" ] } + ] + }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Replaces", + "referenceProperty": "dc:replaces" + } + }, + + "isReplacedBy": { + "title": "Replaced by", + "description": "another existing resources that should be considered a replacement for this resource", + "notes": [ + "This typically refers to a newer version of this resource", + "In the PDR system, this value is automatically generated given the overall state of the PDR's catalog" + ], + "allOf": [ + { "$ref": "#/definitions/RelatedResource" }, + { "required": [ "@id", "proxyFor", "label", "issued" ] } + ], + + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Is replaced by", + "referenceProperty": "dc:isReplacedBy" + } + }, + + "description": { + "title": "Description", + "description": "Human-readable description (e.g., an abstract) of the resource", + "notes": [ + "Each element in the array should be considered a separate paragraph" + ], + "type": "array", + "items": { "type": "string" }, + "minItems": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Description", + "referenceProperty": "dc:description" + } + }, + + "keyword": { + "title": "Tags", + "description": "Tags (or keywords) help users discover your dataset; please include terms that would be used by technical and non-technical users.", + "notes": [ + "Surround each keyword with quotes. Separate keywords with commas. Avoid duplicate keywords in the same record." + ], + "type": "array", + "items": { "type": "string", "minLength": 1 }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Tags", + "referenceProperty": "dcat:keyword" + } + }, + + "topic": { + "description": "Identified tags referring to things or concepts that this resource addresses or speaks to", + "type": "array", + "items": { "$ref": "#/definitions/Topic" }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Topic", + "referenceProperty": "foaf:topic" + } + }, + + "modified": { + "description": "Most recent date on which the dataset was changed, updated or modified.", + "notes": [ + "Dates should be ISO 8601 of highest resolution. In other words, as much of YYYY-MM-DDThh:mm:ss.sTZD as is relevant to this dataset. If there is a need to reflect that the dataset is continually updated, ISO 8601 formatting can account for this with repeating intervals. For instance, R/P1D for daily, R/P2W for every two weeks, and R/PT5M for every five minutes." + ], + "$ref": "#/definitions/ISO8601DateRange", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Last Update", + "referenceProperty": "dc:modified" + } + }, + + "issued": { + "title": "Release Date", + "description": "Date of formal issuance of the resource", + "$ref": "#/definitions/FlexibleDate", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Release Date", + "referenceProperty": "dc:issued", + "range": "xsd:date" + } + }, + + "publisher": { + "description": "The publishing entity and optionally their parent organization(s).", + "notes": [ + "This is a container for a publisher object which groups together the fields: name and subOrganization. The subOrganization field can also contain a publisher object which allows one to describe an organization’s hierarchy. Where greater specificity is desired, include as many levels of publisher as is useful, in ascending order, using the below format." + ], + "$ref": "#/definitions/Organization", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Publisher", + "referenceProperty": "dc:publisher" + } + }, + + "contactPoint": { + "description": "Contact information for getting more information about this resource", + "notes": [ + "This should include at least a name and an email address", + "The information can reflect either a person or a group (such as a help desk)" + ], + "$ref": "#/definitions/ContactInfo", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Information", + "referenceProperty": "dcat:contactPoint" + } + }, + + "accessLevel": { + "title": "Public Access Level", + "description": "The degree to which this dataset could be made publicly-available, regardless of whether it has been made available", + "notes": [ + ], + "type": "string", + "enum": [ "public", "restricted public", "non-public" ], + "valueDocumentation": { + "public": { + "description": "Data asset is or could be made publicly available to all without restrictions" + }, + "restricted public": { + "description": "Data asset is available under certain use restrictions" + }, + "non-public": { + "description": "Data asset is not available to members of the public" + } + }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Public Access Level", + "referenceProperty": "pod:accessLevel" + } + }, + + "license": { + "title": "License", + "description": "A pointer to the primary license or non-license (i.e. Public Domain) statement with which the dataset or API has been published", + "notes": [ + "Software and data developed primarily by federal employees must be considered in the public domain; software primarily developed by contract can be assigned a license, including an open source license.", + "By default, NIST-produced data and software should point to http://www.nist.gov/data/license.cfm", + "See Open Licenses (https://project-open-data.cio.gov/open-licenses/) for more information." + ], + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "License", + "referenceProperty": "dc:license" + } + }, + + "rights": { + "title": "Rights", + "description": "information regarding access or restrictions based on privacy, security, or other policies", + "notes": [ + "This should also provide an explanation for the selected \"accessLevel\" including instructions for how to access a restricted file, if applicable, or explanation for why a \"non-public\" or \"restricted public\" data assetis not \"public,\" if applicable.", + "Text must be 255 or fewer characters." + ], + "anyOf": [ + { + "type": "string", + "minLength": 1, + "maxLength": 255 + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Rights", + "referenceProperty": "dc:rights" + } + }, + + "inventory": { + "description": "a summary of the components that are associated with this resource", + "notes": [ + "This property is an aid for processing resources with a large number of components. This summary allows the actual components content to be missing or incomplete in a trasmitted version of the record." + ], + "$ref": "#/definitions/Inventory" + }, + + "components": { + "description": "a listing of the various component resources, tools, and distributions of this resource", + "notes": [ + "Records for the resources referenced in this list should specify this resource in its isPartOf field.", + "The @type property will indicate which type of component it is. The first value in the @type list should be considered the primary or most important classification.", + "If an item's @type includes dcat:Distribution, the item should be convertable to a distribution in the POD schema.", + "The order should be considered meaningful (at least for components of the same type). The meaning or intention behind the order can depend on the type; however, generally, display of the components of a common type should preserve the order. For clarity then, it is recommended that items of the same primary type should be grouped together in the list." + ], + "type": "array", + "items": { "$ref": "#/definitions/Component" }, + "minLength": 1, + "uniqueItems": true + }, + + "conformsTo": { + "title": "Standard", + "description": "URI used to identify a standardized specification the resource conforms to", + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Standard", + "referenceProperty": "dc:conformsTo", + "owl:range": "xsd:anyURI" + } + }, + + "isPartOf": { + "title": "Collection", + "description": "The collection of which the dataset is a subset", + "$ref": "#/definitions/ResourceReference", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Collection", + "referenceProperty": "dc:isPartOf" + } + }, + + "language": { + "title": "Language", + "description": "The primary language used in the dataset", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string", + "pattern": "^(((([A-Za-z]{2,3}(-([A-Za-z]{3}(-[A-Za-z]{3}){0,2}))?)|[A-Za-z]{4}|[A-Za-z]{5,8})(-([A-Za-z]{4}))?(-([A-Za-z]{2}|[0-9]{3}))?(-([A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(-([0-9A-WY-Za-wy-z](-[A-Za-z0-9]{2,8})+))*(-(x(-[A-Za-z0-9]{1,8})+))?)|(x(-[A-Za-z0-9]{1,8})+)|((en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tay|i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)|(art-lojban|cel-gaulish|no-bok|no-nyn|zh-guoyu|zh-hakka|zh-min|zh-min-nan|zh-xiang)))$" + } + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Language", + "referenceProperty": "dc:language" + } + }, + + "landingPage": { + "title": "Homepage URL", + "description": "a URL to a human-friendly web page that represents the home or gateway to the resources that are part of this dataset.", + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Homepage URL", + "referenceProperty": "dcat:landingPage" + } + }, + + "references": { + "title": "Related Resources", + "description": "Related documents such as technical information about a dataset, developer documentation, etc.", + "type": "array", + "items": { "$ref": "#/definitions/BibliographicReference" }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "References", + "referenceProperty": "dc:references" + } + }, + + "theme": { + "title": "Category", + "description": "Main thematic category of the dataset.", + "notes": [ + "Could include ISO Topic Categories (http://www.isotopicmaps.org/)" + ], + "anyOf": [ + { + "type": "array", + "items": { + "type": "string", + "minLength": 1 + }, + "minItems": 1, + "uniqueItems": true + }, + { + "type": "null" + } + ] + }, + + "@id": { + "description": "A (primary) unique identifier for the resource", + "notes": [ + "It is expected that this field will contain a type of identifier that is of a uniform type across all resource descriptions in the system", + "This identifier should, by default, resolve to the metadata record (or some rendering of it) rather than to the resource itself (e.g. via its landing page)." + ], + "type": "string", + "minLength": 5, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Unique Identifier", + "referenceProperty": "dc:identifier" + } + }, + + "doi": { + "description": "A Digital Object Identifier (DOI) in non-resolving form.", + "notes": [ + "The DOI value should not have the resolver URI base, but should have the form 'doi:NNNNN/XXXXXX'", + "It is expected that this will primarily be Datacite DOIs" + ], + "type": "string", + "pattern": "^doi:[0-9]+\\.[0-9]+/.*$", + "minLength": 5, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Unique Identifier", + "referenceProperty": "dc:identifier" + } + }, + + "ediid": { + "description": "the NIST EDI identifier assigned to the resource", + "type": "string", + "minLength": 5, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "EDI Identifier", + "referenceProperty": "dc:identifier" + } + }, + + "abbrev": { + "description": "an abbreviated form of the resource's title", + "notes": [ + "this can be used as a label for a compact display or text for a link to this resource" + ], + "type": "array", + "items": { + "type": "string", + "maxLength": 24 + } + }, + + "@type": { + "description": "the linked-data class types for this resource", + "notes": [ + "The value must always be given as an array, even when only one type is provided.", + "Multiple values indicate that the Resource can be considered of multiple types", + "If this resource is not to be considered a subtype of the nrd:Resource, its value should be 'nrd:Resource'." + + ], + "type": "array", + "items": { "type": "string" } + } + + }, + + "required": [ + "title", "description", "landingPage", "publisher", + "contactPoint", "accessLevel" + ] + }, + + "FlexibleDate": { + "description": "a flexible format for a resource-related date", + "anyOf": [ + { + "type": "string", + "pattern": "^([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$" + }, + { + "type": "null" + } + ] + }, + + "RelatedResource": { + "description": "a resource that is related in some way to this resource", + "notes": [ + "This serves as a base type for various kinds of references." + ], + "type": "object", + + "properties": { + "@id": { + "description": "an identifier for the reference", + "notes": [ + "The most well-known PID used to identify the resource (see also notes for proxyFor", + "This identifier can be a relative URL which can be used in special cases (See the notes for BibliographicReference:@type for when this ID should not refer to the referenced work).", + "Though not required by this schema, providing an identifier for a component is critical for merging information from different sources.", + "A relative identifier requires that @base be set to the Resource identifier in the @context." + ], + "type": "string" + }, + "@type": { + "anyOf": [ + { + "type": "string", + "enum": [ + "deo:BibliographicReference", + "org:Organization" + ] + }, + { + "type": "array", + "items": { "type": "string" } + } + ], + "notes": [ + "The single string value option is provided for backward compatibility (and may be removed in future versions; see BibliographicReference). When this is used, the node represents a reference and not the thing being referenced; the @id contains a relative URI, representing this reference" + ] + }, + + + "title": { + "description": "the name of the resource being referenced", + "notes": [ + "This value is intended for display.", + "This can be, but is not required to be, the same title given in the metadata record describing the resource" + ], + "type": "string", + "minLength": 1 + }, + "proxyFor": { + "description": "a local identifier representing this resource", + "notes": [ + "This identifier is expected to point to an up-to-date description of the resource as known to the local system. The properties associated with that identifier may be different those given in the current record." + ], + "type": "string", + "format": "uri", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Current Person Information", + "referenceProperty": "ore:proxyFor" + } + }, + "location": { + "description": "the URL for accessing the resource", + "type": "string", + "format": "uri" + }, + + "label": { + "description": "a recommended label or title to display as the text for a link to the document", + "notes": [ + "This is intended to be briefer than a citation. It should be short enough to use as tag to an entry in reference list as inserted into a document's text" + ], + "type": "string" + }, + + "issued": { + "description": "The date the referenced resource was issued", + "notes": [ + "This is intended for determining relative newness--i.e. being newer or older than the referring resource." + ], + "$ref": "#/definitions/FlexibleDate" + }, + + "description": { + "description": "a brief, human-readable description of what this reference refers to and/or why it is being referenced.", + "type": "string" + } + + }, + + "dependencies": { + "proxyFor": { + "required": [ "@type" ] + } + } + }, + + "ResourceReference": { + "description": "a reference to another resource that may have an associated ID", + "notes": [ + "While providing a resType property is recommended, it is required if the proxyFor ID is given." + ], + "allOf": [ + { "$ref": "#/definitions/RelatedResource" }, + { + "required": [ "title" ] + } + ] + }, + + "VersionRelease": { + "description": "notes about a versioned release of the resource", + "allOf": [ + { "$ref": "#/definitions/RelatedResource" }, + { + "properties": { + "version": { + "title": "Version", + "description": "a string indicating a version of the release of this resource", + "notes": [ + "label could contain the same value" + ], + "type": "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Version", + "referenceProperty": "schema:version" + } + } + }, + "required": [ "version", "issued" ] + } + ] + }, + + "BibliographicReference": { + "description": "a reference to a creative work that provides information or data that is important to this resource.", + "notes": [ + "Recognized @type list values include:", + "npg:Document -- a work that is primarily meant to be human readable and could appropriately be identified with a CrossRef DOI", + "npg:Dataset -- a reference that could appropriately be identified with a DataCite DOI", + "npg:Article -- a work that is published in a book, journal, or other periodical", + "schema:Book -- a book, typically physically-bound.", + "deo:BibliographicReference -- a generic citable reference. This is considered a superclass of all reference types and the default type when the specific type cannot be determined.", + "npg:Document and npg:Dataset should be considered mutually exclusive and should not appear in the same list. npg:Article and schema:Book should be considered subclasses of npg:document" + ], + "allOf": [ + { "$ref": "#/definitions/RelatedResource" }, + { + "properties": { + "citation": { + "description": "a full formated citation string for the reference, appropriate for inclusion in a bibliography", + "type": "string", + "asOntology": { + "@conxtext": "profile-schema-onto.json", + "prefLabel": "Cite as", + "referenceProperty": "dc:bibliographicCitation" + } + }, + "refType": { + "description": "the type of relationship that this document has with the resource", + "notes": [ + "This is equivalent to the Datacite relationType in that the term is a predicate that connects the resource as the subject to the referenced document as the object (e.g. resource IsDocumentedBy referenced-doc)", + "The DCiteReference type sets DataCite terms as controlled vocabulary" + ], + "type": "string" + } + }, + "required": [ "@type", "location" ] + } + ] + }, + + "DCiteReference": { + "description": "a bibliographical reference with a controlled vocabulary for its reference type (refType)", + "notes": [ + "Note that some refType values are specifically for references of type npg:Document: 'isDocumentedBy', 'isReviewedBy'", + "Use 'isDocumentedBy' to indicate documents that provide the most comprehensive explanation of the contents of the resource. List these documents in order of importance (as the first one will be exported as the 'describedBy' document when converted to the POD schema).", + "Use 'isSourceOf' if the document provides analysis and interpretation of the resource. In particular, journal articles that are co-published with this resource should be listed with this type. It is recommended that these documents be listed either in order of publication date or importance.", + "Documents may be listed more than once having different types, namely both 'isDocumentedBy' and 'isSourceOf'; however, it is recommended that such multiple classifications should be minimized." + ], + "allOf": [ + { "$ref": "#/definitions/BibliographicReference" }, + { + "properties": { + "refType": { + "description": "a term indicating the nature of the relationship between this resource and the one being referenced", + "notes": [ + "Note that with this term, the subject of relationship is the resource described by this NERDm record and the object is the referenced resource given by the @id property in this node. Although this violates the JSON-LD semantics that properties in this node should describe what's given with the local @id--the referenced resource, in this case--it is more consistant with their use in the DataCite schema." + ], + "type": "string", + "enum": [ "IsDocumentedBy", "IsSupplementedTo", + "IsCitedBy", "Cites", "IsReviewedBy", + "IsReferencedBy", "References", + "IsSourceOf", "IsDerivedFrom", + "IsNewVersionOf", "IsPreviousVersionOf" ], + "valueDocumentation": { + "IsDocumentedBy": { + "description": "The referenced document provides documentation of this resource.", + "notes": [ + "This type should be applied to the reference that provides the best, most complete, or otherwise most preferred description of how the data in this resource was created.", + "This resource is expected to be or include a human-readable document." + ] + }, + "IsSupplementedTo": { + "description": "The referenced document is a supplement to this resource.", + "notes": [ + "a supplement typically refers to data (often small) that appears closely attached to a journal article." + ] + }, + "IsCitedBy": { + "description": "The referenced document cites the resource in some way.", + "notes": [ + "This relationship indicates is lighter than IsReferenceBy: the referenced document may discuss this resource without drawing on and using data or information from this resource." + ] + }, + "Cites": { + "description": "This resource cites the referenced document.", + "notes": [ + "Human readable descriptions can refer to this type of resource via its label, e.g. '...previous research [Smith98; Jones10]...'", + "Like IsCitedBy, the relationship indicated is lighter than References: this resource makes reference to the referenced resource in discussion without necessarily drawing on and using data or information from that resource." + ] + }, + "IsReviewedBy": { + "description": "The referenced document reviews this resource.", + "notes": [ + "This is a lighter relationship than the resource property, describedBy; the latter refers to a document that is the primary, detailed description and/or analysis of this resource" + ] + }, + "IsReferencedBy": { + "description": "The resource is used as a source of information by the referenced document.", + "notes": [ + ] + }, + "References": { + "description": "The referenced document is used as a source of information by the resource.", + "notes": [ + ] + }, + "IsSourceOf": { + "description": "The resource is the source of upon which the referenced resource is based.", + "notes": [ + "In other words, the referenced document is derived from the resource.", + "This is a stronger relationship than 'References'" + ] + }, + "IsDerivedFrom": { + "description": "The referenced document is the source upon which the resource is based.", + "notes": [ + "In other words, the resource is derived from the referenced document.", + "This is a stronger relationship than 'IsReferencedBy'" + ] + }, + "IsNewVersionOf": { + "description": "The referenced resource is a previous version of this resource.", + "notes": [ + "This usually means that the referenced resource is deprecated by this one." + ] + }, + "IsPreviousVersionOf": { + "description": "The referenced resource is a newer version of this resource.", + "notes": [ + "This usually means that the referenced resource deprecates this one." + ] + }, + "IsVariantOf": { + "description": "The referenced resource contains the content of this resource in a different form.", + "notes": [ + "As an example, the referenced resource may be based on the same raw data but calibrated differently." + ] + } + } + } + }, + "required": [ "refType" ] + } + ] + }, + + "Inventory": { + "description": "an inventory summary of the components that are part of a Resource", + "type": "array", + "minItems": 1, + "items": { "$ref": "#/definitions/CollectionInventory" } + }, + + "TypeInventory": { + "description": "a count of the number of components of a given type", + "notes": [ + "This type is intended for use in the context of a (named) collection of components wihtin a hierarchy of components. In the property documentation, the 'current collection' refers to that context." + ], + "type": "object", + "properties": { + "forType": { + "description": "the type of component", + "notes": [ + "This should be an abbreviated URI as used for @type values" + ], + "type": "string" + }, + "childCount": { + "description": "the number of components of this type that are a direct child of the current collection", + "type": "integer" + }, + "descCount": { + "description": "the number of components of this type that are anywhere below the current collection", + "type": "integer" + }, + "label": { + "description": "a recommended label for the type and count", + "type": "string" + } + }, + "required": [ "forType", "descCount" ] + }, + + "CollectionInventory": { + "description": "an inventory that breaks down numbers by the hierarchical collection, where this type describes a node in the hierarchy", + "notes": [ + "The idea here is to provide numbers for each subdirectory" + ], + "type": "object", + "properties": { + "forCollection": { + "description": "the name of the collection that this inventory applies to", + "notes": [ + "This is intended to be a /-delimited name that reflects the position of the subcollection in the hierarchy, as given in the Subcollection filepath field of the collection component.", + "The root collection should be refered to with an empty string" + ], + "type": "string" + }, + "childCount": { + "description": "the number of relevent components that are a direct child of the collection", + "type": "integer" + }, + "descCount": { + "description": "the number of relevent components that are anywhere below the collection", + "type": "integer" + }, + "byType": { + "description": "a breakdown of the inventory of components in this collection by type", + "type": "array", + "items": { "$ref": "#/definitions/TypeInventory" } + }, + "childCollections": { + "description": "an array listing the names of the subcollections that are direct children of the collection", + "notes": [ + "Each name should be the full filepath value that refleces the position of the subcollection in the hierarchy, relative to the root, as given in the Subcollection filepath field of the collection component. This makes it possible to select the subcollection's inventory (via forCollection) or its Subcollection component (via filepath)", + "The order of the listing should be considered significant" + ], + "type": "array", + "items": { "type": "string" } + } + }, + "required": [ "forCollection" ] + }, + + "Component": { + "description": "a description of a component of a resource", + "type": "object", + "notes": [ + "Include a $extensionSchema property to validate this description against a Component sub-type" + ], + "properties": { + "@id": { + "description": "a (relative) identifier for the distribution", + "notes": [ + "Though not required by this schema, providing an identifier for a component is critical for merging information from different sources.", + "A relative identifier requires that @base be set to the Resource identifier in the @context." + ], + "type": "string" + }, + "@type": { + "description": "the types of components that this component can be classified as", + "notes": [ + "the first value should be considered its primary type. This is usually a subtype of Component." + ], + "type": "array", + "items": { "type": "string" } + }, + "title": { + "description": "a descriptive title for the component", + "type": "string" + }, + "description": { + "description": "a description of the nature and contents of the component, including the role it plays as part of the resource", + "type": "string" + }, + "topic": { + "description": "Identified tags referring to things or concepts that this component addresses or speaks to", + "type": "array", + "items": { "$ref": "#/definitions/Topic" }, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Topic", + "referenceProperty": "foaf:topic" + } + }, + "conformsTo": { + "title": "Standard", + "description": "URI used to identify a standardized specification the component conforms to", + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ], + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Data Standard", + "referenceProperty": "dc:conformsTo" + } + } + + } + }, + + "IncludedResource": { + "description": "A reference to another resource (which has its own record) that is a part of this resource", + "notes": [ + "Include 'nrd:IncludedResource' as a value to @type", + "The title should be (but is not required to be) the title provided in the included resource's metadata record." + ], + "allOf": [ + { "$ref": "#/definitions/Component" }, + { "$ref": "#/definitions/ResourceReference" }, + { + "properties": { + "@id": { + "description": "a relative identifier for this component", + "notes": [ + "@id should be the ID for the included resource as a component of this resource; use the required proxyFor property to give the native ID of the included resource." + ] + }, + "resourceType": { + "description": "the linked-data class types for the included resource", + "notes": [ + "The @type should contain values that are subclasses of Component; resourceType is provided to list the Resource types for the included resource.", + "Just like a Resource:@type, the value must always be given as an array, even when only one type is provided.", + "Multiple values indicate that the Resource can be considered of multiple types", + "If this resource is not to be considered a subtype of the nrd:Resource, its value should be 'nrd:Resource'." + ], + "type": "array", + "items": { "type": "string" } + } + }, + "required": [ "proxyFor", "resourceType" ] + } + ] + }, + + "ISO8601DateRange": { + "title": "Last Update", + "description": "a single date-time or a date-time range", + "anyOf": [ + { + "type": "string", + "pattern": "^([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$" + }, + { + "type": "string", + "pattern": "^(R\\d*\\/)?P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$" + }, + { + "type": "string", + "pattern": "^(R\\d*\\/)?([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\4([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\18[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?(\\/)P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$" + } + ] + }, + + "Topic": { + "description": "a container for an identified concept term or proper thing", + "notes": [ + "A concept term refers to a subject or keyword term, like 'magnetism' while a proper thing is a particular instance of a concept that has a name, like the planet 'Saturn' or the person called 'Abraham Lincoln'", + "The meaning of concept is that given by the OWL ontology (owl:Concept); the meaning of thing is that given by the SKOS ontology (skos:Thing). See also the FOAF ontology." + ], + "type": "object", + "properties": { + "@type": { + "description": "a label indicating whether the value refers to a concept or a thing", + "type": "string", + "enum": [ "Concept", "Thing" ], + "valueDocumentation": { + "Concept": { + "description": "label indicating that the value refers to a concept (as in owl:Concept)" + }, + "Thing": { + "description": "label indicating that the value refers to a named person, place, or thing (as in skos:Thing)" + } + } + }, + + "scheme": { + "description": "a URI that identifies the controlled vocabulary, registry, or identifier system that the value is defined in.", + "type": "string", + "format": "uri", + "asOnotology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Schema", + "referenceProperty": "vold:vocabulary" + } + }, + + "@id": { + "description": "the unique identifier identifying the concept or thing", + "type": "string", + "format": "uri" + }, + + "tag": { + "description": "a short, display-able token that locally represents the concept or thing", + "notes": [ + "As a token, it is intended that applications can search for this value and find all resources that are talking about the same thing. Thus, regardless of whether the @id field is provided, all references to the same concept or thing should use the same tag value." + ], + "type": "string" + } + }, + "required": [ "@type", "tag" ] + }, + + "Organization": { + "description": "a named organization that may be part of a larger organization", + "type": "object", + "properties": { + "@type": { + "title": "Metadata Context", + "description": "IRI for the JSON-LD data type. This should be org:Organization for each publisher", + "type": "string", + "enum": [ "org:Organization" ] + }, + "name": { + "title": "Publisher Name", + "description": "The plain-text name of the organization", + "type": "string", + "minLength": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "referenceProperty": "skos:prefLabel" + } + }, + "subOrganizationOf": { + "description": "A parent organizational entity", + "$ref": "#/definitions/Organization", + "asOntology": { + "@context": "profile-schema-onto.json", + "referenceProperty": "org:subOrganizationOf" + } + } + }, + "required": [ "name" ] + }, + + "ContactInfo": { + "description": "Information describing various ways to contact an entity", + "notes": [ + ], + "properties": { + "@type": { + "type": "string", + "enum": [ "vcard:Contact" ] + }, + "fn": { + "title": "Contact Name", + "description": "full name of the contact person, role, or organization", + "type": "string", + "minLength": 1, + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Name", + "referenceProperty": "vcard:fn" + } + }, + + "hasEmail": { + "title": "Email", + "description": "The email address of the resource contact", + "type": "string", + "pattern": "^[\\w\\_\\~\\!\\$\\&\\'\\(\\)\\*\\+\\,\\;\\=\\:.-]+@[\\w.-]+\\.[\\w.-]+?$", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Email", + "referenceProperty": "vcard:hasEmail" + } + }, + + "postalAddress": { + "description": "the contact mailing address", + "notes": [ + ], + "$ref": "#/definitions/PostalAddress", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Address", + "referenceProperty": "vcard:hasAddress" + } + }, + + "phoneNumber": { + "description": "the contact telephone number", + "notes": [ "Complete international dialing codes should be given, e.g. '+1-410-338-1234'" ], + "type" : "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Phone Number", + "referenceProperty": "vcard:hasTelephone" + } + }, + + "timezone": { + "description": "the time zone where the contact typically operates", + "type" : "string", + "pattern": "^[-+][0-9]{4}$", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Contact Address", + "referenceProperty": "transit:timezone" + } + }, + + "proxyFor": { + "description": "a local identifier representing this person", + "notes": [ + "This identifier is expected to point to an up-to-date description of the person as known to the local system. The properties associated with that identifier may be different those given in the current record." + ], + "type": "string", + "format": "uri", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Current Person Information", + "referenceProperty": "ore:proxyFor" + } + } + + }, + "asOntology": { + "@context": "profile-schema-onto.json", + "@id": "pod:ContactPerson", + "@type": "owl:Class", + "prefLabel": "Contact Information", + "referenceClass": "vcard:Contact" + } + + }, + + "PostalAddress": { + "description": "a line-delimited listing of a postal address", + "type": "array", + "items": { "type": "string", "minLength": 1 }, + "asOntology": { + "@context": "profile-schema-onto.json", + "referenceProperty": "vcard:hasAddress" + } + }, + + "Identifier": { + "description": "a complete description of an identifier, including the scheme that it adheres to", + "title": "Identifier", + "properties": { + "scheme": { + "description": "a label indicating the system that the identifier adheres to", + "notes": [ + "this label may imply a particular resolver to use" + ], + "type": "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Identifier System", + "referenceProperty": "mads:idScheme" + } + }, + + "value": { + "description": "the value of the identifier", + "notes": [ + "if no scheme is provided, a URI form of the identifier should be given" + ], + "type": "string", + "asOntology": { + "@context": "profile-schema-onto.json", + "prefLabel": "Identifier System", + "referenceProperty": "mads:idValue" + } + } + + }, + "required": [ "value" ], + "asOntology": { + "@context": "profile-schema-onto.json", + "@id": "mads:Identifier", + "@type": "owl:Class", + "prefLabel": "Identifier information", + "referenceClass": "mads:Identifier" + } + } + }, + + "$ref": "#/definitions/Resource" +} diff --git a/model/nerdm-schema-context.jsonld b/model/nerdm-schema-context.jsonld index 8b9bc0f..fa942a2 100644 --- a/model/nerdm-schema-context.jsonld +++ b/model/nerdm-schema-context.jsonld @@ -1,58 +1,25 @@ { "@context": { - "@vocab": "http://www.w3.org/ns/dcat#", - "dcat": "http://www.w3.org/ns/dcat#", "dc": "http://purl.org/dc/terms/", - "org": "http://www.w3.org/ns/org#", - "xs": "http://www.w3.org/2001/XMLSchema#", + "dcat": "http://www.w3.org/ns/dcat#", + "xs": "http://www.w3.org/2001/XMLSchema", + "foaf": "http://xmlns.com/foaf/0.1/", + "vivo": "http://vivoweb.org/ontology/core#", "ore": "http://www.openarchives.org/ore/terms/", + "ov": "http://vocab.org/open/", + "dpr": "https://nist.org/dp/dpr/", "vcard": "http://www.w3.org/2006/vcard/ns#", + "bibo": "http://purl.org/ontology/bibo/", + "schema": "http://schema.org/", + "npg": "http://ns.nature.com/terms/", "skos": "http://www.w3.org/2004/02/skos/core#", - "deo": "http://purl.org/spar/deo/", "pod": "https://project-open-data.cio.gov/v1.1/schema#", + "rmmperson": "https://nist.org/od/dm/person/", "nrd": "https://data.nist.gov/od/dm/nerdm-schema/v0.1#", - "sdpperson": "https://nist.org/od/dm/person/", - "npg:": "http://ns.nature.com/terms/", - "doi": "https://doi.org/", - "ark": "https://data.nist.gov/od/id/ark:", - - "title": "dc:title", - "description": "dc:description", - "modified": { - "@id": "dc:modified", - "@type": "xs:date" - }, - "issued": { - "@id": "dc:issued", - "@type": "xs:date" - }, - "replaces": { - "@id": "dc:replaces", - "@container": "@set" - }, - "isReplacedBy": "dc:isReplacedBy", - "publisher": "dc:publisher", - "accessLevel": "pod:accessLevel", - "license": "dc:license", - "rights": "dc:rights", - "isPartOf": "dc:isPartOf", - "language": "dc:language", - "references": "dc:references", - "label": "rdfs:prefLabel", - "theme": "dcat:themeTaxonomy", - "subOrganizationOf": "org:subOrganizationOf", - "name": "skos:prefLabel", - "fn": "vcard:fn", - "hasEmail": "vcard:email", - "proxyFor": "ore:proxyFor", - - "authors": { - "@id": "schema:author", - "@container": "@list" - } - } + "nrdp": "https://data.nist.gov/od/dm/nerdm-pub-schema/v0.1#" + }, "@id": "https://data.nist.gov/od/dm/nerdm-context.jsonld", - "title": "The core NIST Extended Resource Data model (NERDm) JSON-LD context", - "description": "This is the base context definition for encoding core NERDm metadata in JSON-LD format" + "title": "The NIST Extended Resource Data model (NERDm) JSON-LD context", + "description": "This is the base context definition for encoding NERDm metadata in JSON-LD format" } diff --git a/model/nerdm-schema.json b/model/nerdm-schema.json index e41da89..be41180 100644 --- a/model/nerdm-schema.json +++ b/model/nerdm-schema.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-04/schema#", "$extensionSchemas": ["https://www.nist.gov/od/dm/enhanced-json-schema/v0.1#"], - "id": "https://data.nist.gov/od/dm/nerdm-schema/v0.2#", - "rev": "wd2", + "id": "https://data.nist.gov/od/dm/nerdm-schema/v0.3#", + "rev": "wd1", "title": "The JSON Schema for the NIST Extended Resource Data model (NERDm)", "description": "A JSON Schema specfying the core NERDm classes", "definitions": { diff --git a/python/nistoar/doi/datacite.py b/python/nistoar/doi/datacite.py index cfe2089..70a25d4 100644 --- a/python/nistoar/doi/datacite.py +++ b/python/nistoar/doi/datacite.py @@ -527,7 +527,7 @@ def reserve(self, attrs=None): try: self._data = resj['data'] except KeyError as ex: - self._unexpected_resolver_err(doipath, resp, resj, + self._reslvr._unexpected_resolver_err(doipath, resp, resj, "Unexpected JSON data returned: missing %s property" % str(ex)) def update(self, attrs): @@ -555,15 +555,15 @@ def update(self, attrs): resj = self._reslvr._to_json(resp, self.doi) if resp.status_code >= 400 and resp.status_code < 500: - self._unexpected_client_err(self.doi, resp, resj) + self._reslvr._unexpected_client_err(self.doi, resp, resj) elif resp.status_code < 200 or resp.status_code >= 300: - self._unexpected_resolver_err(self.doi, resp, resj) + self._reslvr._unexpected_resolver_err(self.doi, resp, resj) try: self._data = resj['data'] except KeyError as ex: - self._unexpected_resolver_err(doipath, resp, resj, + self._reslvr._unexpected_resolver_err(doipath, resp, resj, "Unexpected JSON data returned: missing %s property" % str(ex)) def publish(self, attrs=None): @@ -629,15 +629,15 @@ def publish(self, attrs=None): JAErr(resp.get('errors',[]), "Insufficient metadata to publish")._()) elif resp.status_code >= 400 and resp.status_code < 500: - self._unexpected_client_err(self.doi, resp, resj) + self._reslvr._unexpected_client_err(self.doi, resp, resj) elif resp.status_code < 200 or resp.status_code >= 300: - self._unexpected_resolver_err(self.doi, resp, resj) + self._reslvr._unexpected_resolver_err(self.doi, resp, resj) try: self._data = resj['data'] except KeyError as ex: - self._unexpected_resolver_err(doipath, resp, resj, + self._reslvr._unexpected_resolver_err(doipath, resp, resj, "Unexpected JSON data returned: missing %s property" % str(ex)) def delete(self, relax=False): diff --git a/python/nistoar/nerdm/constants.py b/python/nistoar/nerdm/constants.py index 4b5e23d..7c78a94 100644 --- a/python/nistoar/nerdm/constants.py +++ b/python/nistoar/nerdm/constants.py @@ -4,7 +4,7 @@ """ core_schema_base = "https://data.nist.gov/od/dm/nerdm-schema/" -schema_versions = ["v0.2", "v0.1"] +schema_versions = ["v0.3", "v0.2", "v0.1"] def core_schema_uri_for(version): """ diff --git a/python/nistoar/nerdm/convert/tests/test_pod_doi.py b/python/nistoar/nerdm/convert/tests/test_pod_doi.py index 942cb0a..15812f0 100644 --- a/python/nistoar/nerdm/convert/tests/test_pod_doi.py +++ b/python/nistoar/nerdm/convert/tests/test_pod_doi.py @@ -262,7 +262,7 @@ def test_datacite_doiinfo2reference(self): self.assertEqual(ref['citation'], 'ibid') self.assertIn('_extensionSchemas', ref) self.assertTrue(isinstance(ref['_extensionSchemas'], list)) - self.assertTrue(ref['_extensionSchemas'][0].startswith("https://data.nist.gov/od/dm/nerdm-schema/v0.2#/definitions/"), msg="Unexpected extension schema URI: "+ref['_extensionSchemas'][0]) + self.assertTrue(ref['_extensionSchemas'][0].startswith("https://data.nist.gov/od/dm/nerdm-schema/v0.3#/definitions/"), msg="Unexpected extension schema URI: "+ref['_extensionSchemas'][0]) class TestDOIResolver(unittest.TestCase): diff --git a/python/nistoar/rmm/exceptions.py b/python/nistoar/rmm/exceptions.py index cc8ee56..e48ffd9 100644 --- a/python/nistoar/rmm/exceptions.py +++ b/python/nistoar/rmm/exceptions.py @@ -87,3 +87,11 @@ class StateException(RMMException): """ pass +class DatabaseStateError(StateException): + """ + a class indicating that the RMM database is in + an uncorrectable state preventing proper processing. An example + would be detecting multiple records with the same unique key value. + """ + pass + diff --git a/python/nistoar/rmm/mongo/loader.py b/python/nistoar/rmm/mongo/loader.py index 502d0e2..68ca013 100644 --- a/python/nistoar/rmm/mongo/loader.py +++ b/python/nistoar/rmm/mongo/loader.py @@ -8,6 +8,8 @@ from ejsonschema import ExtValidator from ejsonschema import ValidationError, SchemaError, RefResolutionError +from ..exceptions import DatabaseStateError + _dburl_re = re.compile(r"^mongodb://(\w+(:\S+)?@)?\w+(\.\w+)*(:\d+)?/\w+$") class Loader(object): diff --git a/scripts/makedist.nerdmdocs b/scripts/makedist.nerdmdocs index afce778..cacd9e9 100755 --- a/scripts/makedist.nerdmdocs +++ b/scripts/makedist.nerdmdocs @@ -83,7 +83,7 @@ mkdir -p $installdir # export schema files schemas="nerdm nerdm-pub" -schema_versions="0.1 0.2" +schema_versions="0.1 0.2 0.3" for sch in $schemas; do for ver in $schema_versions; do sfile="$modeldir/$sch-schema-$ver.json" @@ -97,6 +97,7 @@ done # export context files cp $modeldir/nerdm-schema-context.jsonld $installdir cp $modeldir/nerdm-pub-context.jsonld $installdir +cp $modeldir/nerdm-context.jsonld $installdir # export help schema documentation mkdir -p $installdir/nerdm