4. Experts#
The expert category contains Persons and and Institutions combined, which are extracted from individual records.
1{
2 "@context": {
3 "@vocab": "https://schema.org/"
4 },
5 "@id": "https://example.org/id/x",
6 "@type": "Person",
7 "name": "Jane Doe",
8 "jobTitle": "Professor",
9 "workLocation": {
10 "@type": "Place",
11 "address": "54 Ocean Drive, 23521 Ocean City, CountryName",
12 "name": "Place name"
13 },
14 "telephone": "(425) 123-4567",
15 "url": "http://www.janedoe.com",
16 "knowsAbout": [
17 {
18 "@type": "Text",
19 "description": "Invasive species in brackish water"
20 },
21 {
22 "@type": "URL",
23 "url": "https://www.wikidata.org/wiki/Q183368"
24 },
25 {
26 "@id": "https://example.org/id/course/x",
27 "@type": "Course",
28 "description": "In this course ...",
29 "url": "URL to the course"
30 }
31 ],
32 "identifier": {
33 "@id": "https://orcid.org/0000-0002-2257-9127",
34 "@type": "PropertyValue",
35 "propertyID": "https://registry.identifiers.org/registry/orcid",
36 "url": "https://orcid.org/0000-0002-2257-9127",
37 "description": "Optional description of this record..."
38 },
39 "nationality": [
40 {
41 "@type": "Country",
42 "name": "Fiji"
43 },
44 {
45 "@type": "DefinedTerm",
46 "url": "https://unece.org/trade/cefact/unlocode-code-list-country-and-territory",
47 "inDefinedTermSet": "UN/LOCODE Code List by Country and Territory",
48 "name": "Fiji",
49 "termCode": "FJ"
50 }
51 ],
52 "knowsLanguage": {
53 "@type": "Language",
54 "name": "Spanish",
55 "alternateName": "es"
56 }
57 }