5. Institutions#

Metadata template for institutions. This is just schema.org organizations. UnHIDE extracts these from individual records and it tries to uplifted this data with metadata provided with ROR as well as orcid.

 1{{
 2    "@context": {
 3        "@vocab": "https://schema.org/"
 4    },
 5    "@id": "https://index.example.org/id/org/x",
 6    "@type": "Organization",
 7    "address": {
 8        "@type": "PostalAddress",
 9        "addressLocality": "Paris, France",
10        "postalCode": "F-75002",
11        "streetAddress": "38 avenue de l'Opera"
12    },
13    "location": {
14        "@type": "Place",
15        "address": "38 avenue de l'Opera, F-75002, Paris, France",
16        "name": "Paris"
17    },
18    "email": "secretariat(at)example.org",
19    "name": "Organization X",
20    "description": "Description of org ...",
21    "telephone": "( 33 1) 42 68 53 00",
22    "url": "https://example.org/",
23    "member": [
24        {
25            "@id": "https://example.org/id/org/1",
26            "@type": "Organization",
27            "name": "Organization A",
28            "description": "Org A is a potential parent organization of Org X"
29        },
30        {
31            "@id": "https://orcid.org/0000-0002-2257-9127",
32            "@type": "Person"
33        }
34    ],
35    "identifier": {
36        "@id": "https://grid.ac/institutes/grid.475727.4",
37        "@type": "PropertyValue",
38        "description": "UN Department of Economic and Social Affairs Sustainable Development",
39        "propertyID": "https://registry.identifiers.org/registry/grid",
40        "url": "https://grid.ac/institutes/grid.475727.4"
41    }
42}