diff --git a/dataGraphs/thematics/dataset/graphs/datasetTemplate-Box.json b/dataGraphs/thematics/dataset/graphs/datasetTemplate-Box.json new file mode 100644 index 0000000..93fe12b --- /dev/null +++ b/dataGraphs/thematics/dataset/graphs/datasetTemplate-Box.json @@ -0,0 +1,99 @@ +{ + "@context": { + "@vocab": "https://schema.org/" + }, + "@type": "Dataset", + "@id": "https://example.org/permanentUrlToThisJsonDoc", + "name": "A concise but descriptive name of the dataset", + "description": "An extended, free-text description of what's in the dataset, who created it, and other attributes", + "url": "https://urlToTheDatasetOrLandingPage.org/", + "sameAs": [ + "http://alternativeUrlToTheDatasetOrLandingPage.org" + ], + "license": "This work is licensed under a Creative Commons Attribution (CC-BY) 4.0 License", + "citation": [ + "Citation to other work relevant to this dataset", + "Citation to other work relevant to this dataset", + "Citation to other work relevant to this dataset" + ], + "version": "2021-04-24T06:34:56.000Z", + "keywords": [ + "Keyword 1", + "Keyword 2", + "Keyword 3" + ], + "measurementTechnique": "The URL to or text about the methods, technique or technology used to generate this Dataset", + "variableMeasured": [ + { + "@type": "PropertyValue", + "name": "Name of a variable in the dataset", + "description": "Extended description of this variable" + }, + { + "@type": "PropertyValue", + "name": "Name of a variable in the dataset", + "url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable", + "description": "Extended description of this variable?" + }, + { + "@type": "PropertyValue", + "name": "SamplingDeviceApertureSurfaceArea", + "url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable", + "description": "Extended description of this variable" + } + ], + "includedInDataCatalog": { + "@id": "https://registryOfCatalogs.org/permanentUrlIdentifiyingCatalog", + "@type": "DataCatalog", + "url": "https://urlOfDataCatalog.org" + }, + "temporalCoverage": "2007/2007", + "distribution": { + "@type": "DataDownload", + "contentUrl": "http://urlToDirectDownloadOfThisDataset.org/", + "encodingFormat": "text/csv" + }, + "spatialCoverage": { + "@type": "Place", + "geo": { + "@type": "GeoShape", + "description": "schema.org expects lat long (Y X) coordinate order. Box syntax is: miny minx maxy maxx", + "box": "-90 -180 90 -180" + }, + "additionalProperty": { + "@type": "PropertyValue", + "propertyID": "https://dbpedia.org/page/Spatial_reference_system", + "value": "https://www.w3.org/2003/01/geo/wgs84_pos" + } + }, + "provider": [ + { + "@type": "Organization", + "legalName": "Legal Name of Organisation which generated the dataset", + "name": "Other Name of Organisation which generated the dataset", + "url": "https://organisationWebsite.org/" + } + ], + "subjectOf": { + "@type": "Event", + "description": "Describe the event which is the subject of this dataset. For example, a cruise ID.", + "name": "Concise and descriptive name of the Event", + "potentialAction": { + "@type": "Action", + "name": "Concise but descriptive name of action that was part of an Event. For example, the name of a CTD cast", + "agent": [ + "Name or permanent ID of person or thing that performed this action", + "Name or permanent ID of person or thing that performed this action", + "Name or permanent ID of person or thing that performed this action" + ], + "startTime": "2007-03-11T14:45UTC", + "endTime": "2007-03-11T15:42UTC", + "instrument": { + "@type": "Thing", + "name": "The name of the instrument used in the action. For example, the specific model of a CTD, a glider, a moored sensor", + "url": "http://ontology.org/uriToSemanticDescriptorOfThisInstrument", + "description": "Extended description of the sampling instrument" + } + } + } +} \ No newline at end of file diff --git a/dataGraphs/thematics/dataset/graphs/timeSeriesProduct-dataset.json b/dataGraphs/thematics/dataset/graphs/timeSeriesProduct-dataset.json index 5712f90..c296596 100644 --- a/dataGraphs/thematics/dataset/graphs/timeSeriesProduct-dataset.json +++ b/dataGraphs/thematics/dataset/graphs/timeSeriesProduct-dataset.json @@ -57,8 +57,8 @@ "@type": "Place", "description": "Global", "geo": { - "@type": "box", - "polygon": "-90 -180 90 -180" + "@type": "GeoShape", + "box": "-90 -180 90 -180" }, "additionalProperty":[ { "@type": "PropertyValue", diff --git a/dataGraphs/thematics/expinst/graphs/person.json b/dataGraphs/thematics/expinst/graphs/person.json index 198ca03..9caa9b6 100644 --- a/dataGraphs/thematics/expinst/graphs/person.json +++ b/dataGraphs/thematics/expinst/graphs/person.json @@ -14,14 +14,8 @@ "telephone": "(425) 123-4567", "url": "http://www.janedoe.com", "knowsAbout": [ - { - "@type": "Text", - "description": "Invasive species in brackish water" - }, - { - "@type": "URL", - "url": "https://www.wikidata.org/wiki/Q183368" - }, + "Invasive species in brackish water", + "https://www.wikidata.org/wiki/Q183368", { "@id": "https://example.org/id/course/x", "@type": "Course", @@ -36,19 +30,19 @@ "url": "https://orcid.org/0000-0002-2257-9127", "description": "Optional description of this record..." }, - "nationality": [ - { - "@type": "Country", - "name": "Fiji" - }, - { - "@type": "DefinedTerm", - "url": "https://unece.org/trade/cefact/unlocode-code-list-country-and-territory", - "inDefinedTermSet": "UN/LOCODE Code List by Country and Territory", - "name": "Fiji", - "termCode": "FJ" + "nationality": { + "@type": "Country", + "name": "Fiji", + "identifier": { + "@type": "PropertyValue", + "name": "ISO 3166-1 alpha-2 code", + "value": "FJ", + "propertyID": [ + "https://unece.org/trade/cefact/unlocode-code-list-country-and-territory", + "ISO 3166-1:2020" + ] } - ], + }, "knowsLanguage": { "@type": "Language", "name": "Spanish", diff --git a/dataGraphs/thematics/product/graphs/materialSample-example.json b/dataGraphs/thematics/product/graphs/materialSample-example.json new file mode 100644 index 0000000..30dbb3b --- /dev/null +++ b/dataGraphs/thematics/product/graphs/materialSample-example.json @@ -0,0 +1,216 @@ +{ + "@context": { + "@vocab": "https://schema.org/", + "dcterms": "http://purl.org/dc/terms/" + }, + "@type": "Product", + "@id": "https://metadata.mySystem.org/2311252.json", + "additionalType": [ + "https://w3id.org/isample/vocabulary/materialsampleobjecttype/1.0/solidmaterialsample", + "solid material sample", + "sample composed of solid material" + ], + "name": "really cool rock", + "description": "Dark purple-gray chunk of leaverite, contains Austinite, Tilasite, Quartz and native Gold.", + "identifier": [ + { + "@type": "PropertyValue", + "name": "AZGS field sample number", + "value": "smr2010-398" + }, + { + "@type": "PropertyValue", + "name": "International Generic Sample Numbers", + "propertyID": "https://registry.identifiers.org/registry/igsn", + "value": "https://igsn.org/slk222-046537" + } + ], + "countryOfOrigin": "usa", + "countryOfLastProcessing": "usa", + "conditionsOfAccess": "Samples are viewable by contacting the maintainer identifier in this record. Subsamples might be made available for analysis on a case by case basis", + "potentialAction": [ + { + "@type": [ + "Action", + "Event" + ], + "identifier": "https://isample.org/events/235728", + "additionalType": [ + "http://resource.isamples.org/schema/1.0/SamplingEvent", + "sampling event" + ], + "actionStatus": "CompletedActionStatus", + "name": "collection of smr2010-398", + "description": "after a long hot day slogging through the brush on Saddleback Mountain, found and sampled vein described by Gilluly (1922)", + "object": [ + { + "@type": "DefinedTerm", + "identifier": "https://w3id.org/gso/geologicfeature/Vein_Dike_Lithosome", + "name": "mineralized vein" + }, + { + "@type": "DefinedTerm", + "identifier": "http://purl.obolibrary.org/obo/ENVO_01000302", + "name": "outcrop" + } + ], + "participant": { + "@type": "Role", + "roleName": "Collector", + "participant": { + "@type": "Person", + "identifier": "https://orcid.org/0000-0001-6041-5333", + "name": "Joe Geologist", + "affiliation": { + "@type": "Organization", + "identifier": "https://ror.org/00vcszp55", + "name": "Arizona Geological Survey" + }, + "contactPoint": { + "@type": "ContactPoint", + "email": "joe@azgs.arizona.edu" + } + } + }, + "startTime": "2010-10-29T14:11Z", + "endTime": "2010-10-29T15:00Z", + "organizer": { + "@type": "Project", + "name": "Statemap 2010, Saddle Mountain project", + "funder": "Moneybags Inc", + "ethicsPolicy": { + "@type": "CreativeWork", + "identifier": "www.myOrganisation.org/ethicsPolicy.md", + "name": "Careful geology", + "description": "The ethics policy our organisation uses when creating samples" + }, + "contactPoint": { + "@type": "ContactPoint", + "email": "sampler@azgs.arizona.edu" + } + }, + "location": { + "description": "prospect pit on steep NW facing slope", + "name": "SMR station 2020-018", + "geo": { + "@type": "GeoCoordinates", + "elevation": "5827 ft. asl", + "latitude": 32.990297, + "longitude": -110.665585 + } + }, + "additionalProperty": { + "@type": "PropertyValue", + "propertyID": "http://resource.isamples.org/schema/1.0/authorized_by", + "name": "authorized_by", + "value": "BLM land, no permits required" + } + }, + { + "@type": [ + "Action", + "Event" + ], + "additionalType": [ + "http://resource.isamples.org/schema/1.0/MaterialSampleCuration", + "material sample curation", + "curation" + ], + "actionStatus": "CompletedActionStatus", + "organizer": { + "@type": "Project", + "name": "Statemap 2010, Saddle Mountain project", + "funder": "Moneybags Inc", + "contactPoint": { + "@type": "ContactPoint", + "email": "samplecuration@azgs.arizona.edu" + } + }, + "description": "2010-11-05; Samples are packaged in plastic bags and stored in the basement at the Arizona Geological Survey. Samples are maintained at the survey for 5 years after publication of related geologic map.", + "name": "Storage at Arizona Geological Survey", + "subEvent": { + "@type": [ + "Action", + "Event" + ], + "actionStatus": "CompletedActionStatus", + "description": "initial sample cleaning, packaging and labeling for storage", + "participant": { + "@type": "Role", + "roleName": "curator", + "participant": { + "@type": "Person", + "identifier": "https://orcid.org/0000-0111-2241-5355", + "name": "Tom Garmin", + "affiliation": { + "@type": "Organization", + "identifier": "https://ror.org/00vcszp55", + "contactPoint": { + "@type": "ContactPoint", + "email": "garmin@azgs.arizona.edu" + } + } + } + } + } + }, + { + "@type": "Action", + "name": "sample access and use", + "actionStatus": "PotentialActionStatus", + "description": "Samples are viewable by contacting the maintainer identifier in this record. Subsamples might be made available for analysis on a case by case basis" + } + ], + "keywords": [ + "Laramide", + "epithermal environment", + "Saddle Mountain", + "leaverite" + ], + "material": { + "@type": "DefinedTerm", + "name": "Rock", + "identifier": "https://w3id.org/isample/vocabulary/material/1.0/rock", + "inDefinedTermSet": { + "@type": "DefinedTermSet", + "identifier": "https://w3id.org/isample/vocabulary/sampleobjecttype/1.0/materialsvocabulary", + "name": "iSamples Materials Vocabulary" + } + }, + "category": { + "@type": "DefinedTerm", + "name": "Earth Interior", + "identifier": "https://w3id.org/isample/vocabulary/sampledfeature/1.0/earthinterior", + "inDefinedTermSet": { + "@type": "DefinedTermSet", + "identifier": "https://w3id.org/isample/vocabulary/sampleobjecttype/1.0/sampledfeaturevocabulary", + "name": "Sampled Feature Type vocabulary" + } + }, + "subjectOf": [ + { + "@type": [ + "DigitalDocument", + "Dataset" + ], + "identifier": "https://isamples.org/igsn-id/metadata", + "dcterms:conformsTo": "http://resource.isamples.org/schema/1.0/schema.org", + "sdPublisher": { + "@type": "Organization", + "identifier": "https://ror.org/someorg7523824", + "name": "Museum of great samples", + "contactPoint": { + "@type": "ContactPoint", + "email": "curator@gsample.org" + } + } + }, + { + "@type": "Dataset", + "url": "https://data.org/chem/26357", + "name": "Chemistry of rock samples from Saddle Mountain", + "encodingType": "text/csv", + "contentType": "Chemical analysis" + } + ] +} \ No newline at end of file