📄 definitions/canonical/Person.json
D-OPEN SOVEREIGN
1{
2  "name": "Person",
3  "typePrefix": "PR",
4  "canonical": true,
5  "uidStrategy": ["isni", "orcid"],
6  "multipleInstances": false,
7  "props": [
8    { "name": "title",        "type": "string" },
9    { "name": "description",  "type": "string" },
10    { "name": "originalLang", "type": "string" },
11    { "name": "ageGradeBand", "type": "number", "bits": 8 },
12    { "name": "previewTxId",  "type": "string" },
13    { "name": "safe",         "type": "boolean" },
14    { "name": "deleted",      "type": "boolean" },
15    { "name": "birthDate",    "type": "string" },
16    { "name": "deathDate",    "type": "string" },
17    { "name": "nationality",  "type": "string" },
18    { "name": "wikiUrl",      "type": "string" }
19  ],
20  "instanceFields": [],
21  "relations": [
22    {
23      "name":       "authorOf",
24      "targetType": "Book",
25      "direction":  "in",
26      "inverted":   "authors"
27    }
28  ],
29  "translations": {
30    "fr": {
31      "className": "Personne"
32    }
33  }
34}
35