Skip to content

Instantly share code, notes, and snippets.

@adamml
Last active October 6, 2017 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamml/58ebdc7fc3f8ab8dad5d8852a28fb28c to your computer and use it in GitHub Desktop.
Save adamml/58ebdc7fc3f8ab8dad5d8852a28fb28c to your computer and use it in GitHub Desktop.
OceanExpert modelling in Schema
{
"@context": {
"sc": "http://schema.org/",
"gl":"http://schema.geolink.org/1.0/base/main#",
"skos": "http://www.w3.org/2004/02/skos/core#"
},
"@id": "https://www.oceanexpert.net/expert/20699",
"@type": "sc:Person",
"sc:additionalType": "gl:Person",
"sc:honorificPrefix": "Dr.",
"sc:givenName": "Adam",
"sc:jobTitle": "Team Leader for Data Management",
"sc:nationality": {
"@id": "https://www.oceanexpert.net/voc/country/united_kingdom",
"@type": "sc:Country",
"sc:name": "United Kingdom"
},
"sc:award": "PhD",
"sc:hasOccupation": {
"@id": "https://www.oceanexpert.net/voc/occupation/data_management",
"@type": "sc:Occupation"
},
"sc:sameAs": [
"https://www.linkedin.com/in/adamleadbetter/",
"https://twitter.com/#!/AdamLeadbetter"
],
"sc:url": [
"https://www.oceanexpert.net/expert/20699",
"https://www.oceanexpert.net/expert/alead"
],
"sc:identifier": [{
"@type": "sc:PropertyValue",
"sc:additionalType": "http://schema.geolink.org/1.0/base/main#",
"sc:propertyID": "http://purl.org/spar/datacite/orcid",
"sc:value": "0000-0003-4382-2285",
"sc:sameAs": "http://orcid.org/0000-0003-4382-2285"
},
{
"@type": ["sc:PropertyValue","sc:Language"],
"@id": "https://www.oceanexpert.net/voc/working_language/english",
"sc:propertyID": "Working Language",
"sc:name": "English",
"sc:value": "English",
"sc:alternateName": "en"
}]
,
"sc:affiliation": {
"@id": "https://www.oceanexpert.net/institution/7201",
"@type": "sc:Organization",
"sc:name": "Marine Institute Headquarters, Galway",
"sc:description": "The Marine Institute is the national agency responsible for Marine Research, Technology Development and Innovation (RTDI). We seek to assess and realise the economic potential of Ireland's 220 million acre marine resource; promote the sustainable development of marine industry through strategic funding programmes and essential scientific services; and safeguard our marine environment through research and environmental monitoring.",
"sc:address": {
"@type": "sc:PostalAddress",
"sc:streetAddress": "Rinville",
"sc:addressLocality": "Oranmore",
"sc:addressRegion": "Co. Galway",
"sc:addressCountry": {
"@id": "https://www.oceanexpert.net/voc/country/ireland",
"@type": "sc:Country",
"sc:name": "Ireland"
},
"sc:postalCode": "H91 R673"
},
"sc:logo": "https://www.oceanexpert.net/uploads/institutes/7201/instituteLogo.jpg",
"sc:url": [
"https://www.oceanexpert.net/institution/7201",
"https://www.marine.ie/Home/home"
],
"sc:sameAs": "http://edmo.seadatanet.org/code/396",
"sc:telephone": "+353 91 387 200",
"sc:faxNumber": "+353 91 387 201",
"sc:identifier": {
"@id": "https://www.oceanexpert.net/voc/institution_type/government",
"@type": "sc:PropertyValue",
"sc:propertyID": "Type",
"sc:value": "Government"
}
}
}
@prefix gl: <http://schema.geolink.org/1.0/base/main#>.
@prefix schema: <http://schema.org/>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
<https://www.oceanexpert.net/expert/20699> a schema:Person;
schema:additionalType gl:Person;
schema:honorificPrefix "Dr.";
schema:givenName "Adam";
schema:jobTitle "Team Leader for Data Management";
schema:hasOccupation <https://www.oceanexpert.net/voc/occupation/data_management>;
schema:sameAs
<https://www.linkedin.com/in/adamleadbetter/>,
<https://twitter.com/#!/AdamLeadbetter>;
schema:url
<https://www.oceanexpert.net/expert/20699>,
<https://www.oceanexpert.net/expert/alead>;
schema:affiliation <https://www.oceanexpert.net/institution/7201>;
schema:nationality <https://www.oceanexpert.net/voc/country/united_kingdom>;
schema:award "PhD";
schema:identifier [
a schema:PropertyValue;
schema:additionalType gl:Identifier;
schema:propertyID <http://purl.org/spar/datacite/orcid>;
schema:value "0000-0003-4382-2285";
schema:sameAs <http://orcid.org/0000-0003-4382-2285>].
<https://www.oceanexpert.net/institution/7201> a schema:Organization;
schema:name "Marine Institute Headquarters, Galway";
schema:description "The Marine Institute is the national agency responsible for Marine Research, Technology Development and Innovation (RTDI). We seek to assess and realise the economic potential of Ireland's 220 million acre marine resource; promote the sustainable development of marine industry through strategic funding programmes and essential scientific services; and safeguard our marine environment through research and environmental monitoring.";
schema:address [ a schema:PostalAddress;
schema:streetAddress "Rinville";
schema:addressLocality "Oranmore";
schema:addressRegion "Co. Galway";
schema:addressCountry <https://www.oceanexpert.net/voc/country/ireland>;
schema:postalCode "H91 R673"];
schema:logo <https://www.oceanexpert.net/uploads/institutes/7201/instituteLogo.jpg>;
schema:url
<https://www.oceanexpert.net/institution/7201>,
<https://www.marine.ie/Home/home>;
schema:sameAs: <http://edmo.seadatanet.org/code/396>;
schema:telephone "+353 91 387 200";
schema:faxNumber "+353 91 387 201";
schema:identifier <https://www.oceanexpert.net/voc/institution_type/government>.
<https://www.oceanexpert.net/voc/job_type/data_management> a schema:Occupation;
schema:name "Data Management"@en.
<https://www.oceanexpert.net/voc/institution_type/government> a schema:PropertyValue;
schema:name "Type"@en;
schema:value "Government"@en.
<https://www.oceanexpert.net/voc/country/ireland> a schema:Country;
schema:name "Ireland"@en.
<https://www.oceanexpert.net/voc/country/united_kingdom> a schema:Country;
schema:name "United Kingdom"@en.
<https://www.oceanexpert.net/voc/working_language/english> a schema:PropertyValue, schema:Language;
schema:propertyID "Working Language";
schema:name "English";
schema:value "English";
schema:alternateName "en".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment