-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
818 lines (732 loc) · 30.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://takinsolutions.github.io/censusdocumentation/group/">
<link rel="shortcut icon" href="../img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>Group - Census Data Model Documentation</title>
<link href="../css/bootstrap-3.3.7.min.css" rel="stylesheet">
<link href="../css/font-awesome-4.7.0.css" rel="stylesheet">
<link href="../css/base.css" rel="stylesheet">
<link rel="stylesheet" href="../css/highlight.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<script src="../js/jquery-3.2.1.min.js"></script>
<script src="../js/bootstrap-3.3.7.min.js"></script>
<script src="../js/highlight.pack.js"></script>
<base target="_top">
<script>
var base_url = '..';
var is_top_frame = false;
var pageToc = [
{title: "Group Names and Classifications", url: "#_top", children: [
{title: "- Group Names and Classifications Ontology Graph", url: "#-group-names-and-classifications-ontology-graph" },
{title: "- Group Names and Classifications RDF", url: "#-group-names-and-classifications-rdf" },
{title: "- Group Names and Classifications JSON-LD", url: "#-group-names-and-classifications-json-ld" },
]},
{title: "Group Existence", url: "#group-existence", children: [
{title: "- Group Existence Ontology Graph", url: "#-group-existence-ontology-graph" },
{title: "- Group Existence RDF", url: "#-group-existence-rdf" },
{title: "- Group Social Relations JSON-LD", url: "#-group-social-relations-json-ld" },
]},
{title: "Group Description", url: "#group-description", children: [
{title: "- Group Description Ontology Graph", url: "#-group-description-ontology-graph" },
{title: "- Group Description RDF", url: "#-group-description-rdf" },
{title: "- Group Description JSON-LD", url: "#-group-description-json-ld" },
]},
{title: "Group Documentation", url: "#group-documentation", children: [
{title: "- Group Documentation Ontology Graph", url: "#-group-documentation-ontology-graph" },
{title: "- Group Documentation RDF", url: "#-group-documentation-rdf" },
{title: "- Group Documentation JSON-LD", url: "#-group-documentation-json-ld" },
]},
];
</script>
<script src="../js/base.js"></script>
</head>
<body>
<script>
if (is_top_frame) { $('body').addClass('wm-top-page'); }
</script>
<div class="container-fluid wm-page-content">
<a name="_top"></a>
<div class="row wm-article-nav-buttons" role="navigation" aria-label="navigation">
<div class="wm-article-nav pull-right">
<a href="../bibliography/" class="btn btn-xs btn-default pull-right">
Next
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</a>
<a href="../bibliography/" class="btn btn-xs btn-link">
Bibliographic Entity
</a>
</div>
<div class="wm-article-nav">
<a href="../person/" class="btn btn-xs btn-default pull-left">
<i class="fa fa-chevron-left" aria-hidden="true"></i>
Previous</a><a href="../person/" class="btn btn-xs btn-link">
Person
</a>
</div>
</div>
<p><strong>Group</strong></p>
<p><strong>Author:</strong> Denitsa Nenova, George Bruseker</p>
<p><strong>Version:</strong> 1.0</p>
<p>The <em>Group</em> reference data model provides a list of standard descriptors (fields) that are typically present in the description of a <em>Group</em> or institution in cultural heritage data systems. The intention of this reference model is to provide a consolidated, high-level formal structure comprising the most commonly reused descriptors for a <em>Group</em>.</p>
<table>
<thead>
<tr>
<th></th>
<th>Name</th>
<th>URI</th>
</tr>
</thead>
<tbody>
<tr>
<td>Root Ontology Node</td>
<td>E74 Group</td>
<td>https://cidoc-crm.org/Entity/E74-Group/version-7.1.1</td>
</tr>
<tr>
<td>Type Differentiator</td>
<td>N/A</td>
<td>N/A</td>
</tr>
</tbody>
</table>
<p>The <em>Group</em> model allows the documentation of the following kinds of information:</p>
<table>
<thead>
<tr>
<th>Information Category</th>
<th>Information Collections</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Names and Classifications</td>
<td>Names/Alternative Names/Identifiers/Type</td>
<td>The researcher can document various names and classification regarding the <em>Group</em>.</td>
</tr>
<tr>
<td>Existence</td>
<td>Birth/Death</td>
<td>The researcher can document the events related to the birth and death of the <em>Group</em>.</td>
</tr>
<tr>
<td>Description</td>
<td>Description</td>
<td>The researcher can document various free-text descriptions of the <em>Group</em>.</td>
</tr>
<tr>
<td>Documentation</td>
<td>Citation</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="group-names-and-classifications">Group <strong>Names and Classifications</strong></h2>
<p>The attribution of names and types to things, including <em>Groups</em>, is a basic human activity. The disambiguation of <em>Group</em> is aided by the understanding of the various names and identifiers that have been given to a <em>Group</em> at different moments in time. Moreover, classifications such as <em>Group</em> type and legal status can help in identifying and studying <em>Groups</em> over time.</p>
<table>
<thead>
<tr>
<th>Filed ID</th>
<th>Name</th>
<th>Description</th>
<th>Data Type</th>
<th>CRM Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>fie_1</td>
<td>Group Identifier</td>
<td>This field is used to record an identifier attributed to the documented <em>Group</em>.</td>
<td>String</td>
<td>--> P1 --> E42[1_1] --> P190 --> rdfs:Literal</td>
</tr>
<tr>
<td>fie_2</td>
<td>Group Identifier Type</td>
<td>This field is used to record the type of the identifier attributed to the documented <em>Group</em>.</td>
<td>Concept</td>
<td>--> P1 --> E42[1_1] --> P2 --> E55[2_1]</td>
</tr>
<tr>
<td>fie_3</td>
<td>Group Identifier Provider</td>
<td>This field is used to record the institution, group or individual responsible for providing the documented <em>Group</em>'s identifier.</td>
<td>Reference Model [Person/Group]</td>
<td>--> P1 --> E42[1_1] --> P37i --> E15[3_1] --> P14 --> E39[3_2]</td>
</tr>
<tr>
<td>fie_4</td>
<td>Group Identifier Source</td>
<td>This field is used to record the source based on which the identifier was attributed to the documented <em>Group</em>.</td>
<td>Reference Model [Bibliographic Entity/Image]</td>
<td>--> P1 --> E42[1_1] --> P37i --> E15[3_1] --> P16 --> E73[4_1]</td>
</tr>
<tr>
<td>fie_5</td>
<td>Group Name</td>
<td>This field is used to record the main name attributed to the documented <em>Group</em>.</td>
<td>String</td>
<td>--> P1 --> E33_E41[5_1] --> P190 --> rdfs:Literal<br><br> --> P1 --> E33_E41[5_1] --> P2 --> E55[5_2]{'preferred terms'}</td>
</tr>
<tr>
<td>fie_10</td>
<td>Group Alias</td>
<td>This field is used to record an alternative name under which the documented <em>Group</em> is known.</td>
<td>String</td>
<td>--> P1 --> E33_E41[10_1] --> P190 --> rdfs:Literal</td>
</tr>
<tr>
<td>fie_11</td>
<td>Group Alias Type</td>
<td>This field is used to record the type of the alternative name that has been attributed to the documented <em>Group</em>.</td>
<td>Concept</td>
<td>--> P1 --> E33_E41[10_1] --> P2 --> E55[11_1]</td>
</tr>
<tr>
<td>fie_16</td>
<td>Group Alias Source</td>
<td>This field is used to record the source on the basis of which the organization attributing the alternative name use based their attribution.</td>
<td>Reference Model [Bibliographic Entity/Image]</td>
<td>--> P1 --> E33_E41[10_1] --> P141i --> E13[15_1] --> P16 --> E73[16_1]</td>
</tr>
</tbody>
</table>
<h3 id="-group-names-and-classifications-ontology-graph">- Group Names and Classifications <strong>Ontology Graph</strong></h3>
<p><img alt="Screenshot" src="../img/nc_group.png" /></p>
<h3 id="-group-names-and-classifications-rdf">- Group Names and Classifications <strong>RDF</strong></h3>
<pre><code>@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://census.de/example/actor/E74> a crm:E74_Group ;
crm:P1_is_identified_by <https://example.org/name/fie_10_1>,
<https://example.org/name/fie_1_1>,
<https://example.org/name/fie_5_1> .
<http://vocab.getty.edu/aat/300404670> a crm:E55_Type ;
rdfs:label "preferred terms" .
<https://example.org/actor/fie_3_2> a crm:E39_Actor .
<https://example.org/conceptual_object/fie_16_1> a crm:E73_Information_Object .
<https://example.org/conceptual_object/fie_4_1> a crm:E73_Information_Object .
<https://example.org/event/fie_15_1> a crm:E13_Attribute_Assignment ;
crm:P16_used_specific_object <https://example.org/conceptual_object/fie_16_1> .
<https://example.org/event/fie_3_1> a crm:E15_Identifier_Assignment ;
crm:P14_carried_out_by <https://example.org/actor/fie_3_2> ;
crm:P16_used_specific_object <https://example.org/conceptual_object/fie_4_1> .
<https://example.org/name/fie_10_1> a crm:E33_E41_Linguistic_Appellation ;
crm:P141i_was_assigned_by <https://example.org/event/fie_15_1> ;
crm:P190_has_symbolic_content "content" ;
crm:P2_has_type <https://example.org/type/fie_11_1> .
<https://example.org/name/fie_1_1> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "content" ;
crm:P2_has_type <https://example.org/type/fie_2_1> ;
crm:P37i_was_assigned_by <https://example.org/event/fie_3_1> .
<https://example.org/name/fie_5_1> a crm:E33_E41_Linguistic_Appellation ;
crm:P190_has_symbolic_content "content" ;
crm:P2_has_type <http://vocab.getty.edu/aat/300404670> .
<https://example.org/type/fie_11_1> a crm:E55_Type .
<https://example.org/type/fie_2_1> a crm:E55_Type .
</code></pre>
<h3 id="-group-names-and-classifications-json-ld">- Group Names and Classifications <strong>JSON-LD</strong></h3>
<pre><code>{
"@context": "https://linked.art/ns/v1/linked-art.json",
"@graph": [
{
"classified_as": [
"https://example.org/type/fie_2_1"
],
"content": "content",
"id": "https://example.org/name/fie_1_1",
"identifier_assigned_by": [
"https://example.org/event/fie_3_1"
],
"type": "Identifier"
},
{
"id": "https://example.org/conceptual_object/fie_16_1",
"type": "InformationObject"
},
{
"classified_as": [
"http://vocab.getty.edu/aat/300404670"
],
"content": "content",
"id": "https://example.org/name/fie_5_1",
"type": "Name"
},
{
"id": "https://example.org/conceptual_object/fie_4_1",
"type": "InformationObject"
},
{
"id": "https://example.org/type/fie_2_1",
"type": "Type"
},
{
"id": "https://example.org/type/fie_11_1",
"type": "Type"
},
{
"_label": "preferred terms",
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type"
},
{
"assigned_by": [
"https://example.org/event/fie_15_1"
],
"classified_as": [
"https://example.org/type/fie_11_1"
],
"content": "content",
"id": "https://example.org/name/fie_10_1",
"type": "Name"
},
{
"id": "https://census.de/example/actor/E74",
"identified_by": [
"https://example.org/name/fie_10_1",
"https://example.org/name/fie_1_1",
"https://example.org/name/fie_5_1"
],
"type": "Group"
},
{
"id": "https://example.org/event/fie_15_1",
"type": "AttributeAssignment",
"used_specific_object": [
"https://example.org/conceptual_object/fie_16_1"
]
},
{
"id": "https://example.org/actor/fie_3_2",
"type": "Actor"
},
{
"carried_out_by": [
"https://example.org/actor/fie_3_2"
],
"id": "https://example.org/event/fie_3_1",
"type": "IdentifierAssignment",
"used_specific_object": [
"https://example.org/conceptual_object/fie_4_1"
]
}
]
}
</code></pre>
<h2 id="group-existence">Group <strong>Existence</strong></h2>
<p>Of essential importance in identifying and tracking <em>Groups</em> is to know when they came into existence and if they have gone out of existence. For this reason, we have clustered descriptors relevant to such information into a common ‘existence’ category. These are described in the table below.</p>
<table>
<thead>
<tr>
<th>Filed ID</th>
<th>Name</th>
<th>Description</th>
<th>Data Type</th>
<th>CRM Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>fie_79</td>
<td>Group Earliest Formation Date</td>
<td>This field is used to record the earliest possible date for the formation of the documented <em>Group</em> or institution.</td>
<td>Date</td>
<td>--> P95i --> E66[79_1] --> P4 --> E52[79_2] --> P82a --> xsd:dateTime</td>
</tr>
<tr>
<td>fie_80</td>
<td>Group Latest Formation Date</td>
<td>This field is used to record the latest possible date for the formation of the documented <em>Group</em> or institution.</td>
<td>Date</td>
<td>--> P95i --> E66[79_1] --> P4 --> E52[79_2] --> P82b --> xsd:dateTime</td>
</tr>
<tr>
<td>fie_81</td>
<td>Group Formation Location</td>
<td>This field is used to record the place of formation of the documented <em>Group</em> or institution.</td>
<td>Reference Model [Location]</td>
<td>--> P95i --> E66[79_1] --> P7 --> E53[81_1]</td>
</tr>
<tr>
<td>fie_83</td>
<td>Group Earliest Dissolution Date</td>
<td>This field is used to record the earliest possible date for the dissolution of the documented <em>Group</em> or institution.</td>
<td>Date</td>
<td>--> P99i --> E68[83_1] --> P4 --> E52[83_2] --> P82a --> xsd:dateTime</td>
</tr>
<tr>
<td>fie_84</td>
<td>Group Latest Dissolution Date</td>
<td>This field is used to record the latest possible date for the dissolution of the documented <em>Group</em> or institution.</td>
<td>Date</td>
<td>--> P99i --> E68[83_1] --> P4 --> E52[83_2] --> P82b --> xsd:dateTime</td>
</tr>
<tr>
<td>fie_85</td>
<td>Group Dissolution Location</td>
<td>This field is used to record the place at which the dissolution of the documented <em>Group</em> occurred.</td>
<td>Reference Model [Location]</td>
<td>--> P99i --> E68[83_1] --> P7 --> E53[85_1]</td>
</tr>
</tbody>
</table>
<h3 id="-group-existence-ontology-graph">- Group Existence <strong>Ontology Graph</strong></h3>
<p><img alt="Screenshot" src="../img/ex_group.png" /></p>
<h3 id="-group-existence-rdf">- Group Existence <strong>RDF</strong></h3>
<pre><code>@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://census.de/example/actor/E74> a crm:E74_Group ;
crm:P95i_was_formed_by <https://example.org/event/fie_79_1> ;
crm:P99i_was_dissolved_by <https://example.org/event/fie_83_1> .
<https://example.org/event/fie_79_1> a crm:E66_Formation ;
crm:P4_has_time-span <https://example.org/time_span/fie_79_2> ;
crm:P7_took_place_at <https://example.org/place/fie_81_1> .
<https://example.org/event/fie_83_1> a crm:E68_Dissolution ;
crm:P4_has_time-span <https://example.org/time_span/fie_83_2> ;
crm:P7_took_place_at <https://example.org/place/fie_85_1> .
<https://example.org/place/fie_81_1> a crm:E53_Place .
<https://example.org/place/fie_85_1> a crm:E53_Place .
<https://example.org/time_span/fie_79_2> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin ""^^xsd:dateTime ;
crm:P82b_end_of_the_end ""^^xsd:dateTime .
<https://example.org/time_span/fie_83_2> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin ""^^xsd:dateTime ;
crm:P82b_end_of_the_end ""^^xsd:dateTime .
</code></pre>
<h3 id="-group-social-relations-json-ld">- Group Social Relations <strong>JSON-LD</strong></h3>
<pre><code>{
"@context": "https://linked.art/ns/v1/linked-art.json",
"@graph": [
{
"begin_of_the_begin": "",
"end_of_the_end": "",
"id": "https://example.org/time_span/fie_83_2",
"type": "TimeSpan"
},
{
"id": "https://example.org/place/fie_81_1",
"type": "Place"
},
{
"id": "https://example.org/place/fie_85_1",
"type": "Place"
},
{
"id": "https://example.org/event/fie_83_1",
"timespan": "https://example.org/time_span/fie_83_2",
"took_place_at": [
"https://example.org/place/fie_85_1"
],
"type": "Dissolution"
},
{
"dissolved_by": "https://example.org/event/fie_83_1",
"formed_by": "https://example.org/event/fie_79_1",
"id": "https://census.de/example/actor/E74",
"type": "Group"
},
{
"id": "https://example.org/event/fie_79_1",
"timespan": "https://example.org/time_span/fie_79_2",
"took_place_at": [
"https://example.org/place/fie_81_1"
],
"type": "Formation"
},
{
"begin_of_the_begin": "",
"end_of_the_end": "",
"id": "https://example.org/time_span/fie_79_2",
"type": "TimeSpan"
}
]
}
</code></pre>
<h2 id="group-description">Group <strong>Description</strong></h2>
<p>This category brings together the diverse field which describe the documented <em>Group</em>. It is meant to cover information concerning the type, language content of the description as well as temporal information about the description itself.</p>
<table>
<thead>
<tr>
<th>Filed ID</th>
<th>Name</th>
<th>Description</th>
<th>Data Type</th>
<th>CRM Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>fie_188</td>
<td>Group Description</td>
<td>This field is used to record a description in free text of the documented <em>Group</em>.</td>
<td>String</td>
<td>--> P129i --> E33[188_1] --> P190 --> rdfs:Literal</td>
</tr>
<tr>
<td>fie_190</td>
<td>Group Description Type</td>
<td>This field is used to record the type of description given of the documented <em>Group</em>.</td>
<td>Concept</td>
<td>--> P129i --> E33[188_1] --> P2 --> E55[190_1]</td>
</tr>
<tr>
<td>fie_191</td>
<td>Group Description Author</td>
<td>This field is used to record the author of the description given of the documented <em>Group</em>.</td>
<td>Reference Model [Person/Group]</td>
<td>--> P129i --> E33[188_1] --> P94i --> E65[191_1]>-P14 --> E39[191_2]</td>
</tr>
<tr>
<td>fie_192</td>
<td>Group Description Earliest Date</td>
<td>This field is used to record the earliest possible date for the creation of the description of the documented <em>Group</em>.</td>
<td>Date</td>
<td>--> P129i --> E33[188_1] --> P94i --> E65[191_1] --> P4 --> E52[191_2] --> P82a --> xsd:dateTime</td>
</tr>
<tr>
<td>fie_193</td>
<td>Group Description Latest Date</td>
<td>This field is used to record the latest possible date for the creation of the description of the documented <em>Group</em>.</td>
<td>Date</td>
<td>--> P129i --> E33[188_1] --> P94i --> E65[191_1] --> P4 --> E52[191_2] --> P82b —> xsd:dateTime</td>
</tr>
</tbody>
</table>
<h3 id="-group-description-ontology-graph">- Group Description <strong>Ontology Graph</strong></h3>
<p><img alt="Screenshot" src="../img/desc_group.png" /></p>
<h3 id="-group-description-rdf">- Group Description <strong>RDF</strong></h3>
<pre><code>@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
<https://census.de/example/actor/E74> a crm:E74_Group ;
crm:P129i_is_subject_of <https://example.org/conceptual_object/fie_188_1> .
<https://example.org/actor/fie_191_2> a crm:E39_Actor .
<https://example.org/conceptual_object/fie_188_1> a crm:E33_Linguistic_Object ;
crm:P190_has_symbolic_content "content" ;
crm:P2_has_type <https://example.org/type/fie_190_1> ;
crm:P94i_was_created_by <https://example.org/event/fie_191_1> .
<https://example.org/event/fie_191_1> a crm:E65_Creation ;
crm:P14_carried_out_by <https://example.org/actor/fie_191_2> ;
crm:P4_has_time-span <https://example.org/time_span/fie_192_1> .
<https://example.org/time_span/fie_192_1> a crm:E52_Time-span ;
crm:P81a_begin_of_the_begin "content" ;
crm:P81b_end_of_the_end "content" .
<https://example.org/type/fie_190_1> a crm:E55_Type .
</code></pre>
<h3 id="-group-description-json-ld">- Group Description <strong>JSON-LD</strong></h3>
<pre><code>{
"@context": "https://linked.art/ns/v1/linked-art.json",
"@graph": [
{
"carried_out_by": [
"https://example.org/actor/fie_191_2"
],
"id": "https://example.org/event/fie_191_1",
"timespan": "https://example.org/time_span/fie_192_1",
"type": "Creation"
},
{
"id": "https://example.org/actor/fie_191_2",
"type": "Actor"
},
{
"id": "https://example.org/type/fie_190_1",
"type": "Type"
},
{
"classified_as": [
"https://example.org/type/fie_190_1"
],
"content": "content",
"created_by": "https://example.org/event/fie_191_1",
"id": "https://example.org/conceptual_object/fie_188_1",
"type": "LinguisticObject"
},
{
"id": "https://census.de/example/actor/E74",
"subject_of": [
"https://example.org/conceptual_object/fie_188_1"
],
"type": "Group"
},
{
"crm:P81a_begin_of_the_begin": "content",
"crm:P81b_end_of_the_end": "content",
"id": "https://example.org/time_span/fie_192_1",
"type": "crm:E52_Time-span"
}
]
}
</code></pre>
<h2 id="group-documentation">Group <strong>Documentation</strong></h2>
<p>This information category unites referential information about the documented <em>Group</em>.</p>
<table>
<thead>
<tr>
<th>Filed ID</th>
<th>Name</th>
<th>Description</th>
<th>Data Type</th>
<th>CRM Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>fie_204</td>
<td>Group Description External URL</td>
<td>The field is used to record the sameness between the <em>Group</em> described and an external authority.</td>
<td>uri</td>
<td>--> L54 --> E1[204_1]</td>
</tr>
<tr>
<td>fie_195</td>
<td>Group Image</td>
<td>This field is used to record a digital image which is representative of the documented <em>Group</em>.</td>
<td>Reference Model [Image]</td>
<td>--> P138i --> E36/D9[195_1]</td>
</tr>
<tr>
<td>fie_196</td>
<td>Group Citation</td>
<td>This field is used to record a citation to reference documentation for the documented <em>Group</em>.</td>
<td>String</td>
<td>--> P129i --> E33[196_1] --> rdf:value --> rdfs:Literal<br><br>--> P129i --> E33[196_1] --> P2 --> E55 "Citation"</td>
</tr>
<tr>
<td>fie_197</td>
<td>Group Citation Source</td>
<td>This field is used to record the source used for generating the citation for the documented <em>Group</em>.</td>
<td>Reference Model [Bibliographic Entity]</td>
<td>--> P129i --> E33[196_1] --> P106i --> E33[197_1]</td>
</tr>
<tr>
<td>fie_cen_24</td>
<td>Group Document Reference</td>
<td>This field is used to relate a document carrying a textual reference about the documented group and the documented <em>Group</em> itself.</td>
<td>Reference Model</td>
<td>[Document]</td>
</tr>
</tbody>
</table>
<h3 id="-group-documentation-ontology-graph">- Group Documentation <strong>Ontology Graph</strong></h3>
<p><img alt="Screenshot" src="../img/doc_group.png" /></p>
<h3 id="-group-documentation-rdf">- Group Documentation <strong>RDF</strong></h3>
<pre><code>@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://census.de/example/actor/E74> a crm:E74_Group ;
crm:L54_is_same-as <https://example.org/entity/fie_204_1> ;
crm:P129i_is_subject_of <https://example.org/conceptual_object/fie_196_1> ;
crm:P138i_has_representation <https://example.org/conceptual_object/fie_195_1> ;
crm:P67i_is_referred_to_by <https://example.org/conceptual_object/C24_1> .
<https://example.org/conceptual_object/C24_1> a crm:E33_Linguistic_Object ;
crm:P128i_is_carried_by <https://example.org/physical_object/C24_2> .
<https://example.org/conceptual_object/fie_195_1> a crm:D9_Data_Object,
crm:E36_Visual_Item .
<https://example.org/conceptual_object/fie_196_1> a crm:E33_Linguistic_Object ;
crm:P106i_forms_part_of <https://example.org/conceptual_object/fie_197_1> ;
crm:P190_has_symbolic_content "content" ;
crm:P2_has_type <https://example.org/type/fie_196_1> .
<https://example.org/conceptual_object/fie_197_1> a crm:E33_Linguistic_Object .
<https://example.org/entity/fie_204_1> a crm:E1_CRM_Entity .
<https://example.org/physical_object/C24_2> a crm:E22_Human-Made_Object .
<https://example.org/type/fie_196_1> a crm:E55_Type ;
rdfs:label "Citation" .
</code></pre>
<h3 id="-group-documentation-json-ld">- Group Documentation <strong>JSON-LD</strong></h3>
<pre><code>{
"@context": "https://linked.art/ns/v1/linked-art.json",
"@graph": [
{
"id": "https://example.org/conceptual_object/fie_197_1",
"type": "LinguisticObject"
},
{
"id": "https://example.org/conceptual_object/fie_195_1",
"type": [
"VisualItem",
"crm:D9_Data_Object"
]
},
{
"_label": "Citation",
"id": "https://example.org/type/fie_196_1",
"type": "Type"
},
{
"carried_by": [
"https://example.org/physical_object/C24_2"
],
"id": "https://example.org/conceptual_object/C24_1",
"type": "LinguisticObject"
},
{
"id": "https://example.org/physical_object/C24_2",
"type": "HumanMadeObject"
},
{
"id": "https://example.org/entity/fie_204_1",
"type": "CRMEntity"
},
{
"classified_as": [
"https://example.org/type/fie_196_1"
],
"content": "content",
"crm:P106i_forms_part_of": {
"id": "https://example.org/conceptual_object/fie_197_1"
},
"id": "https://example.org/conceptual_object/fie_196_1",
"type": "LinguisticObject"
},
{
"crm:L54_is_same-as": {
"id": "https://example.org/entity/fie_204_1"
},
"id": "https://census.de/example/actor/E74",
"referred_to_by": [
"https://example.org/conceptual_object/C24_1"
],
"representation": [
"https://example.org/conceptual_object/fie_195_1"
],
"subject_of": [
"https://example.org/conceptual_object/fie_196_1"
],
"type": "Group"
}
]
}
</code></pre>
<br>
<div class="row wm-article-nav-buttons" role="navigation" aria-label="navigation">
<div class="wm-article-nav pull-right">
<a href="../bibliography/" class="btn btn-xs btn-default pull-right">
Next
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</a>
<a href="../bibliography/" class="btn btn-xs btn-link">
Bibliographic Entity
</a>
</div>
<div class="wm-article-nav">
<a href="../person/" class="btn btn-xs btn-default pull-left">
<i class="fa fa-chevron-left" aria-hidden="true"></i>
Previous</a><a href="../person/" class="btn btn-xs btn-link">
Person
</a>
</div>
</div>
<br>
</div>
<footer class="container-fluid wm-page-content">
<p>Documentation built with <a href="http://www.mkdocs.org/">MkDocs</a> using <a href="https://github.com/gristlabs/mkdocs-windmill">Windmill</a> theme by Grist Labs.</p>
</footer>
</body>
</html>