Link Search Menu Expand Document

LAGO Collaboration 1.1

Version Updated Date Contributors
1.1 2022-09-15 10:59:24 +0000 2020-06-01 - today LAGO Collaboration

Table of contents

What is defined?

lagoCollaboration.1.1.jsonld unifies the definition of the LAGO Collaboration following the official LAGO schema vocabulary.

The purpose of the definition is to univocally identify the LAGO Collaboration employing a public URI for being linked by any metadata.

How should this definition be referenced for linked-data?

To preserve the provenance of the linked metadata through time, the GitHub raw link of a certain tag release (Major.Minor.Patch) of this document must be used:

https://raw.githubusercontent.com/lagoproject/DMP/<Major.Minor.Patch>/defs/lagoCollaboaration.1.1.jsonld

For example:

https://raw.githubusercontent.com/lagoproject/DMP/1.1.0/defs/lagoCollabaration.1.1.jsonld

As a real example, the metadata´s catalog of a simulation should include the reference to the DCAT-AP2 property publisher:

{
"@context":{
...
            "lago":"https://raw.githubusercontent.com/lagoproject/DMP/1.1.0/schema/lagoSchema.1.1.jsonld",
            "@vocab":"https://raw.githubusercontent.com/SEMICeu/DCAT-AP/2.0.0/releases/2.0.0/dcat-ap_2.0.0.jsonld",
...
          },
"@id":"/sac_60_100.0_75600_QGSII_flat",
"@type":"Catalog",
"title":"sac_60_100.0_75600_QGSII_flat",
"description":"A Complete Corsika Simulation",
"publisher":{
             "@id":"https://raw.githubusercontent.com/lagoproject/DMP/1.1.0/defs/lagoCollaboration.1.1.jsonld",
             "@type":"lago:Organization"
            },
...
...

How could this definition be embarranssingly referenced?

Although it is discouraged because these methods do not preserve the metadata provenance, it could be sometimes needed referencing using alternative ways.

Plain JSON-LD file

{
  "@context" : { 
    "@vocab" : "http://schema.org/",
    "lago" : "https://raw.githubusercontent.com/lagoproject/DMP/1.1.0/schema/lagoSchema.1.1.jsonld#",
    "foaf" : "http://xmlns.com/foaf/0.1/",
    "org" : "https://www.w3.org/TR/vocab-org/#", 
    "owl" : "http://www.w3.org/2002/07/owl#"   
  },
    "@id" : "https://lagoproject.net/", 
    "@type" : "Organization",
    "owl:equivalentClass" : [ "lago:Organization", "foaf:Organization", "org:OrganizationalCollaboration"],
    "name" : "LAGO Collaboration",
    "description" : "The LAGO Collaboration is a non-centralized, distributed and highly collaborative grid of scientific institutions. The main goal of the LAGO Collaboration is the design, installation, commissioning, operation, coordination, maintenance, and, eventually, the decommissioning of the Latin American Giant Observatory (LAGO). LAGO is an astroparticle observatory on a global scale, working as an integrated detection network, hereinafter referred to as 'the LAGO detection network' or simply 'the LAGO network', of single or small arrays of detectors, hereinafter referred to as 'the LAGO detectors', that are deployed at different geographical locations, hereinafter referred as “the LAGO sites”.",
    "url" : "https://lagoproject.net/",
    "sameAs" : [ "https://lagoproject.github.io/DMP/defs/lagoCollaboration.1.1/",
                 "https://lagoproject.net/collab.html",
                 "https://doi.org/10.48550/arXiv.1909.10039",
                 "https://github.com/lagoproject/",
                 "https://hub.docker.com/u/lagocollaboration" ],
    "logo" : "https://lagoproject.net/images/lago-logo-90.png"
}