-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_schema.xml
More file actions
683 lines (554 loc) · 32.8 KB
/
data_schema.xml
File metadata and controls
683 lines (554 loc) · 32.8 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<dataSchema name="hdb_FAIMS_Community_Server" preparer="Heurist user:Penny Crook">
<!-- ****** -->
<!--FAIMS Database Schema generated by Heurist Vsn 3.1.4, Monday 28th of October 2013 01:11:36 AM-->
<!-- ****** -->
<!--In Heurist, relationships are stored in a single relationship record type and
different types of relationship are distinguished by the relationship type field (attribute) whose values
can be organised hierarchichally. In FAIMS, each type of relationship is a separate record type, organised
into three classes - bidirectional, container and hierarchy-->
<!--Archaeological elements correspond with Heurist record types-->
<!--Properties correspond with Heurist base field types for this record type-->
<!--CONTEXT-->
<RelationshipElement name="AboveBelow" type="hierarchical">
<description>Implements a above below for contexts.</description>
<parent>Above</parent>
<child>Below</child>
</RelationshipElement>
<RelationshipElement name="Same As" type="bidirectional">
<description>Implements a same as for contexts</description>
</RelationshipElement>
<RelationshipElement name="Contains - Contained By" type="hierarchical">
<description>Implements a contains-containedby for contexts.</description>
<parent>Contains</parent>
<child>Contained By</child>
</RelationshipElement>
<RelationshipElement name="Cuts - Cut By" type="hierarchical">
<description>Implements a cuts-cutby for contexts.</description>
<parent>Cuts</parent>
<child>Cut By</child>
</RelationshipElement>
<RelationshipElement name="Butts - Butted By" type="hierarchical">
<description>Implements a Butts-ButtedBy for contexts.</description>
<parent>Butts</parent>
<child>Butted By</child>
</RelationshipElement>
<RelationshipElement name="Bonded To" type="bidirectional">
<description>Implements a bonded to for contexts</description>
</RelationshipElement>
<RelationshipElement name="ContextArtefactGroup" type="bidirectional">
<description>Implements a 1:N between context and its artefact groups</description>
</RelationshipElement>
<RelationshipElement name="ContextSample" type="bidirectional">
<description>Implements a 1:N between context and its artefact groups</description>
</RelationshipElement>
<ArchaeologicalElement name="Context">
<description>The physical result of any single action, whether it leaves a positive or negative record within the stratigraphic sequence. (MoLAS 1994)</description>
<property name="Site Code" type="freetext">
<description>Short code to signify the excavation site and often the year of excavation. </description>
</property>
<property isIdentifier="true" name="Context ID" type="freetext">
<description>Unique number or code for each Context.</description>
</property>
<property name="Context Name" type="freetext">
<description>Brief name for the Context, eg 'House A - west wall'</description>
</property>
<property name="AreaCode" type="freetext">
<description>Area or Trench: the working subdivision of an archaeological site. </description>
</property>
<property name="Grid Location Reference" type="freetext">
<description>Reference number for the grid square(s) within which this Context falls. </description>
</property>
<property name="Excavated By" type="freetext">
<description>The initials or names of individuals who excavated the Context.</description>
</property>
<property name="Date Opened" type="date">
<description>Date on which the Context was first excavated.</description>
</property>
<property name="Excavation Method" type="blocktext">
<description>Method and conditions of archaeological excavation.</description>
</property>
<property name="Context Type" type="enum">
<description>Deposit, cut or 'other' (feature).</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3398" StandardCode="">{Cut}
<description>Any Context which forms a negative interface, eg pits, ditches, graves and foundation and robber trenches</description></term>
<term HeuristID="0-3397" StandardCode="">{Deposit}
<description>Any Context with deposited soil, eg natural deposits, floor and road surfaces and pit, ditch and grave fills</description>
<term HeuristID="0-3400" StandardCode="">
{Natural}
<description/></term>
</term>
<term HeuristID="0-3399" StandardCode="">{Feature}
<description>Any context formed independent of a Cut or negative interface, eg walls, hearths.</description></term>
</lookup>
</property>
<property name="Context Comments" type="blocktext">
<description>Additional comments on the description of the Context.</description>
</property>
<property name="Soil Compaction Type" type="enum">
<description>The type of compaction of sediments in the deposit, eg 'Compact', 'Cemented' or 'Loose'.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3402" StandardCode="">{Coarse-grained_sediments}
<description>Soils with coarse-grained sediments such as gravel and sand.</description>
<term HeuristID="0-3407" StandardCode="">
{Compact}
<description>Requires mattock for excavation.(MoLAS 2004: 30)</description></term>
<term HeuristID="0-3404" StandardCode="">{Indurated}
<description>Broken only with sharp pick blow, even when soaked. (MoLAS 2004: 30)</description></term>
<term HeuristID="0-3408" StandardCode="">{Loose}
<description>Can be excavated with hoe or trowel. (MoLAS 2004: 30)</description></term>
<term HeuristID="0-3405" StandardCode="">{Strongly_cemented}
<description>Cannot be broken with hands. (MoLAS 2004: 30)</description></term>
<term HeuristID="0-3406" StandardCode="">{Weakly_cemented}
<description>Pick removes sediment in lumps which can be broken with hands. (MoLAS 2004: 30)</description></term>
</term>
<term HeuristID="0-3403" StandardCode="">{Fine-grained_sediments}
<description>Soils with fine-grained sediments such as silt and clay.</description>
<term HeuristID="0-3413" StandardCode="">
{Friable}
<description>Non-plastic, crumbles in fingers.</description></term>
<term HeuristID="0-3409" StandardCode="">{Hard}
<description>Brittle or very tough. (MoLAS 2004: 30)</description></term>
<term HeuristID="0-3411" StandardCode="">{Soft}
<description>Easily moulded with fingers.</description></term>
<term HeuristID="0-3410" StandardCode="">{Stiff}
<description>Cannot be moulded with fingers.(MoLAS 2004: 30)</description></term>
<term HeuristID="0-3412" StandardCode="">{Very_soft}
<description>Exudes between fingers when squeezed.</description></term>
</term>
<term HeuristID="0-3414" StandardCode="">{Peat}
<description>Anaerobic accumulation of partially decayed vegetation.</description>
<term HeuristID="0-3415" StandardCode="">
{Firm}
<description>Fibres compressed together. (MoLAS 1994: 30)</description></term>
<term HeuristID="0-3417" StandardCode="">{Plastic}
<description>Can be moulded in hands and smeared between fingers. (MoLAS 1994: 30)</description></term>
<term HeuristID="0-3416" StandardCode="">{Spongy}
<description>Very compressible and open structure. (MoLAS 1994: 30)</description></term>
</term>
</lookup>
</property>
<property name="Soil Compaction Description" type="freetext">
<description>Description of the compaction of soil, including changes throughout the deposit. </description>
</property>
<property name="Soil Colour" type="freetext">
<description>Simple description of the colour of the soil.</description>
</property>
<property name="Soil Munsell Colour" type="freetext">
<description>The Munsell Code for the soil colour. </description>
</property>
<property name="Soil Grain Size" type="enum">
<description>Grains which comprise more than 10% deposit should be included here. </description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3420" StandardCode="">{Clay}
<description/></term>
<term HeuristID="0-3427" StandardCode="">{Coarse_Pebbles}
<description>20.00–60.00mm</description></term>
<term HeuristID="0-3424" StandardCode="">{Coarse_Sand}
<description>0.20–2.00mm</description></term>
<term HeuristID="0-3428" StandardCode="">{Cobbles}
<description>60mm–200mm</description></term>
<term HeuristID="0-3425" StandardCode="">{Fine_Pebbles}
<description>2.00–6.00mm</description></term>
<term HeuristID="0-3422" StandardCode="">{Fine_sand}
<description>0.02–0.06 mm</description></term>
<term HeuristID="0-3426" StandardCode="">{Medium_Pebbles}
<description>6.00–20.0mm</description></term>
<term HeuristID="0-3423" StandardCode="">{Medium_Sand}
<description>0.06–0.20mm</description></term>
<term HeuristID="0-3421" StandardCode="">{Silt}
<description/></term>
</lookup>
</property>
<property name="Soil Texture" type="enum">
<description>Proportions of different grain sizes within the deposit.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3440" StandardCode="">{Clay}
<description>Clays are tough and can be moulded into shapes when moist. Clays form a long flexible ribbon when rubbed between the palms and the ribbon can often be bent into a "U" shape without breaking. Clays dry into very hard clods. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3437" StandardCode="">{Clay_Loam}
<description>More easily moulded into a shape than a loam, a clay loam rolls out to a thin ribbon between the palms while a loam will break-up. When dry a clay loam will form a lump but is not as tough to break as a clay. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3434" StandardCode="">{Loam}
<description>A loam breaks into crumbs but will tend to stick together. Sand grains cannot be felt in a moist sample which when squeezed will retain its shape when handled freely. Loams are usually soft to the feel. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3431" StandardCode="">{Loamy_Sand}
<description>In a loamy sand particles barely stick together and a moulded piece of soil just holds its shape. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3430" StandardCode="">{Sand}
<description>A sand has a loose gritty feel and does not stick together. Individual sand grains can be seen or felt. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3438" StandardCode="">{Sandy_Clay}
<description>A sandy clay is like a clay but sand grains can be felt (and heard - see Sandy Loam). (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3435" StandardCode="">{Sandy_Clay_Loam_}
<description>A sandy clay loam is like a clay loam but sand grains can be felt (and heard - see Sandy Loam) (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3432" StandardCode="">{Sandy_Loam}
<description>A sandy loam sticks together more than a loamy sand but can be easily broken. Individual sand grains can be felt and heard if a wet sample is rubbed between the index finger and thumb and held close to the ear. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3439" StandardCode="">{Silty_Clay}
<description>A silty clay is like a clay but smoother. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3436" StandardCode="">{Silty_Clay_Loam}
<description>A silty clay loam is like a clay loam but silty as well and smooth to the touch. (VDEPI 2009: AG0058)</description></term>
<term HeuristID="0-3433" StandardCode="">{Silty_Loam}
<description>A silty loam is like a loam but has a smooth silky feel when a moist sample is pushed between the index finger and thumb. On drying a sample can form a hard lump but this may be broken by hand. (VDEPI 2009: AG0058)</description></term>
</lookup>
</property>
<property name="Soil Particle Sorting" type="enum">
<description>Assessment of the frequency with which particles of the same size occur.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3443" StandardCode="">{Moderately_sorted}
<description>Particles are mostly the same size and evenly distributed, but there are some larger particles.</description></term>
<term HeuristID="0-3444" StandardCode="">{Poorly_sorted}
<description>Particles are different sizes and unevenly distributed.</description></term>
<term HeuristID="0-3445" StandardCode="">{Very_poorly_sorted_}
<description>Particles are very different sizes and very unevenly distributed.</description></term>
<term HeuristID="0-3442" StandardCode="">{Well_sorted}
<description>Particles are roughly the same size and evenly distributed.</description></term>
</lookup>
</property>
<property name="Soil Stoniness" type="freetext">
<description>This is a measure of the size, shape and roundness of individual stones present.</description>
</property>
<property name="Soil Stone Size" type="freetext">
<description>Give an estimate of the size range of stones present in the Deposit: for example, 20mm -50mm.</description>
</property>
<property name="Soil Stone Shape" type="enum">
<description>Shape and roundness of stones and pebbles in the deposit. </description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3447" StandardCode="">{Angular}
<description>Sharp pebbles or stones.</description>
<term HeuristID="0-3449" StandardCode="">
{Angular}
<description>Sharp and pointed.</description></term>
<term HeuristID="0-3450" StandardCode="">{Sub-angular}
<description>A little sharp and pointed.</description></term>
<term HeuristID="0-3448" StandardCode="">{Very_angular}
<description>Very sharp and pointed.</description></term>
</term>
<term HeuristID="0-3451" StandardCode="">{Rounded}
<description>Rounded stones and pebbles.</description>
<term HeuristID="0-3453" StandardCode="">
{Rounded}
<description>Mostly rounded pebble or stone.</description></term>
<term HeuristID="0-3452" StandardCode="">{Sub-rounded}
<description>Some rounding to pebbles or stones.</description></term>
<term HeuristID="0-3454" StandardCode="">{Well-rounded}
<description>Very rounded pebble or stone.</description></term>
</term>
</lookup>
</property>
<property name="Deposit Inclusions" type="blocktext">
<description>Brief description of inclusions (eg stone flecks, artefacts).</description>
</property>
<property name="Deposit Thickness and Extent" type="blocktext">
<description>Brief description of the thickness and extent of the deposit.</description>
</property>
<property name="Horizon Boundary" type="enum">
<description>Boundary to the next horizon</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3462" StandardCode="">{Broken}
<description>The boundary is interrupted. (MoLAS 1994: 35)</description></term>
<term HeuristID="0-3457" StandardCode="">{Clear}
<description>Change occurs over a distance of 25-60 mm. (MoLAS 1994: 35)</description></term>
<term HeuristID="0-3458" StandardCode="">{Diffuse}
<description>Change occurs over a distance of 60-130 mm. (MoLAS 1994: 35)</description></term>
<term HeuristID="0-3461" StandardCode="">{Irregular}
<description>The boundary surface has pockets that are deeper than they are wide. (MoLAS 1994: 35)</description></term>
<term HeuristID="0-3456" StandardCode="">{Sharp}
<description>Change occurs over a distance of 5-25 mm (or less). (MoLAS 1994: 35)</description></term>
<term HeuristID="0-3459" StandardCode="">{Smooth}
<description>The boundary surface is plane with few irregularities. (MoLAS 1994: 35)</description></term>
<term HeuristID="0-3460" StandardCode="">{Wavy}
<description>The boundary surface has broad shallow relatively regular pockets. (MoLAS 1994: 35)</description></term>
</lookup>
</property>
<property name="Shape of Cut" type="enum">
<description>The shape at the top of the cut.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3465" StandardCode="">{Circular}
<description>Round</description></term>
<term HeuristID="0-3470" StandardCode="">{Linear}
<description>Straight sided, but not square or rectangular.</description></term>
<term HeuristID="0-3468" StandardCode="">{Ovoid}
<description>Oval or elliptical.</description></term>
<term HeuristID="0-3471" StandardCode="">{Rectangular}
<description>Two sides longer than the other.</description></term>
<term HeuristID="0-3466" StandardCode="">{Semi-Circular}
<description>Half circle.</description></term>
<term HeuristID="0-3464" StandardCode="">{Square}
<description>Equal on four sides. </description></term>
<term HeuristID="0-3467" StandardCode="">{Sub-Circular}
<description>Nearly circular.</description></term>
<term HeuristID="0-3469" StandardCode="">{Sub-rectangular}
<description>Nearly rectangular in shape.</description></term>
</lookup>
</property>
<property name="Shape of Cut - Note" type="blocktext">
<description>Additional notes about the shape of the cut.</description>
</property>
<property name="Shape of Corners" type="enum">
<description>The shape of the corners of a Cut in plan: 'square', 'rounded' etc. </description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3475" StandardCode="">{Other}
<description>Other shapes</description></term>
<term HeuristID="0-3474" StandardCode="">{Rounded}
<description>Rounded corners.</description></term>
<term HeuristID="0-3473" StandardCode="">{Square}
<description>Sharp, perpendicular corners.</description></term>
</lookup>
</property>
<property name="Length" type="float">
<description>Length of the longest side, in mm.</description>
</property>
<property name="Width" type="float">
<description>Width or diameter, in mm.</description>
</property>
<property name="Depth" type="float">
<description>Depth or Height, in mm.</description>
</property>
<property name="Break of Slope - Top" type="enum">
<description>The degree with which the top surface of the edge of the cut breaks into the sides.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3478" StandardCode="">{Gradual}
<description>Some rounding to the top.</description></term>
<term HeuristID="0-3479" StandardCode="">{Not_perceptible}
<description>Well-rounded; there is no perceptible difference between the sides of the cut and the surface into which it protrudes. </description></term>
<term HeuristID="0-3477" StandardCode="">{Sharp}
<description>Clear, sharp slope.</description></term>
</lookup>
</property>
<property name="Sides of Cut" type="blocktext">
<description>Describe the smoothness, regularity and shape of the sides of a cut (eg 'vertical', 'convex', 'concave' or 'stepped').</description>
</property>
<property name="Break of slope - Base" type="enum">
<description>The degree with which the sides break into the base of the cut.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3478" StandardCode="">{Gradual}
<description>Some rounding to the top.</description></term>
<term HeuristID="0-3479" StandardCode="">{Not_perceptible}
<description>Well-rounded; there is no perceptible difference between the sides of the cut and the surface into which it protrudes. </description></term>
<term HeuristID="0-3477" StandardCode="">{Sharp}
<description>Clear, sharp slope.</description></term>
</lookup>
</property>
<property name="Shape of Base" type="enum">
<description>The shape of the base of the cut, in profile.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3482" StandardCode="">{Concave}
<description/></term>
<term HeuristID="0-3481" StandardCode="">{Flat}
<description/></term>
<term HeuristID="0-3484" StandardCode="">{Pointed}
<description/></term>
<term HeuristID="0-3483" StandardCode="">{Sloping}
<description/></term>
<term HeuristID="0-3485" StandardCode="">{Tapered}
<description/>
<term HeuristID="0-3487" StandardCode="">
{Blunt}
<description/></term>
<term HeuristID="0-3488" StandardCode="">{Sharp}
<description/></term>
</term>
<term HeuristID="0-3486" StandardCode="">{Uneven}
<description/></term>
</lookup>
</property>
<property name="Orientation" type="enum">
<description>Orientation of linear cuts, eg N-S.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3491" StandardCode="">{E-W}
<description>Oriented East to West.</description></term>
<term HeuristID="0-3490" StandardCode="">{N-S}
<description>Oriented North to South.</description></term>
<term HeuristID="0-3493" StandardCode="">{NE-SW}
<description>Oriented North-east to South-west.</description></term>
<term HeuristID="0-3492" StandardCode="">{NW-SE}
<description>Oriented North-west to South-east.</description></term>
</lookup>
</property>
<property name="Inclination of axis" type="freetext">
<description>Inclination of the axis of post- and stakeholes.</description>
</property>
<property name="Truncation" type="blocktext">
<description>Describe the nature of truncation to the cut (where appropriate).</description>
</property>
<property name="Your Interpretation" type="freetext">
<description>Your Interpretation of the likely functional zone of the context, whether inside a structure, or part of the structure itself.</description>
</property>
<property name="Your Discussion" type="blocktext">
<description>Elaborate upon your basic interpretation.</description>
</property>
<property name="Your description" type="blocktext">
<description>Enter a simple descriptive interpretation. For example, is it a floor, midden, brickearth wall, gully or pit?</description>
</property>
<property name="Start date" type="date">
<description>Start Date (may also include time and/or have fuzzy limits)</description>
</property>
<property name="End date" type="date">
<description>End Date (may also include time and/or have fuzzy limits)</description>
</property>
<property name="Phase From" type="freetext">
<description>The earliest phase in which this Context was likely to have been created.</description>
</property>
<property name="Phase To" type="freetext">
<description>The latest phase in which this Context was likely to have been deposited or sealed.</description>
</property>
<property name="Associations" type="blocktext">
<description>Structures, phases or people with which this Context may be associated, eg '1810 cottage'.</description>
</property>
<property name="Recorded By" type="freetext">
<description>The name or initials of the person completing the record.</description>
</property>
<property name="Sketch" type="file">
<description>Sketch</description>
</property>
<property name="Photo" type="file">
<description>Photo</description>
</property>
</ArchaeologicalElement>
<!--ERROR!!!!! This ArchaeologicalEntity does not have identifiers!!! Verify TitleMask in Heurist recordtype!-->
<!--ARTEFACT GROUP-->
<ArchaeologicalElement name="Artefact Group">
<description>The total group or assemblage of objects recovered from a single Context. These are sometimes referred to as 'Bulk Finds'.</description>
<property name="Site Code" type="freetext">
<description>Short code to signify the excavation site and often the year of excavation. </description>
</property>
<property name="Context ID" type="freetext">
<description>Unique number or code for each Context.</description>
</property>
<property isIdentifier="true" name="Artefact Group ID" type="freetext">
<description>Unique number or code for the artefact group.</description>
</property>
<property name="Artefact Class" type="enum">
<description>Broad Artefact Class for each Artefact (eg Glass, Ceramic, Building Material).</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="1051-3137" StandardCode="">{Ceramic}
<description/>
<term HeuristID="0-3530" StandardCode="">
{Coarse}
<description/></term>
<term HeuristID="0-3531" StandardCode="">{Fine}
<description/></term>
<term HeuristID="0-3531" StandardCode="">{Fine}
<description/></term>
<term HeuristID="0-3531" StandardCode="">{Terracotta}
<description/></term>
<term HeuristID="0-3531" StandardCode="">{Other}
<description/></term>
</term>
<term HeuristID="1051-3144" StandardCode="">{Glass}
<description/>
<term HeuristID="0-3531" StandardCode="">
{Black}
<description/></term>
<term HeuristID="0-3531" StandardCode="">{Colourless}
<description/></term>
<term HeuristID="0-3531" StandardCode="">{Coloured}
<description/></term>
</term>
<term HeuristID="1051-3138" StandardCode="">{Metal}
<description/>
<term HeuristID="10-3532" StandardCode="">
{Ferrous}
<description/></term>
<term HeuristID="10-3532" StandardCode="">{Copper-alloy}
<description/></term>
<term HeuristID="10-3532" StandardCode="">{Other}
<description/></term>
</term>
<term HeuristID="1051-3142" StandardCode="">{Building Materiel}
<description/></term>
<term HeuristID="10-3532" StandardCode="">{Organic}
<description/>
<term HeuristID="10-3532" StandardCode="">
{Bone}
<description/></term>
<term HeuristID="10-3532" StandardCode="">{Shell}
<description/></term>
</term>
<term HeuristID="10-3532" StandardCode="">{Miscellaneous}
<description/></term>
</lookup>
</property>
<property name="Artefact Quantity" type="float">
<description>The number of sherds in this group. </description>
</property>
<property name="Artefact Weight" type="float">
<description>The total weight (in grams) of all sherds in this Group.</description>
</property>
<property name="Artefact Group Comment" type="blocktext">
<description>General comment about this group of Artefacts from this Context, eg 'Lots of early porcelain. Few marks.'</description>
</property>
</ArchaeologicalElement>
<!--ERROR!!!!! This ArchaeologicalEntity does not have identifiers!!! Verify TitleMask in Heurist recordtype!-->
<!--SAMPLE-->
<ArchaeologicalElement name="Sample">
<description>Deposit samples, or samples of building elements, recovered from this Context for the purpose of further analysis, or ongoing reference. </description>
<property name="Site Code" type="freetext">
<description>Short code to signify the excavation site and often the year of excavation. </description>
</property>
<property name="Context ID" type="freetext">
<description>Unique number or code for each Context.</description>
</property>
<property isIdentifier="true" name="Sample ID" type="freetext">
<description>The unique code or reference for the Sample.</description>
</property>
<property name="Sample Type" type="enum">
<description>The type of Sample collected, eg Soil, Wood, Pollen.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3535" StandardCode="">{Building_Materials}
<description>Sample of bricks or worked stone collected from this Context.</description></term>
<term HeuristID="0-3533" StandardCode="">{Soil}
<description>General collection of soil deposit from the Context.</description></term>
<term HeuristID="0-3534" StandardCode="">{Wood/Charcoal}
<description>Collection of wood or charcoal fragments from the Context.</description></term>
</lookup>
</property>
<property name="Collection Method" type="enum">
<description>Method of collecting the sample.</description>
<lookup>
<term>No Observation
<description>data not collected</description></term>
<term HeuristID="0-3538" StandardCode="">{Hand_collection}
<description>Hand sample of building elements, for example.</description></term>
<term HeuristID="0-3539" StandardCode="">{Other}
<description>Other collection method.</description></term>
<term HeuristID="0-3537" StandardCode="">{Unsterilised}
<description>A collection using standard excavation tools into a sterilised container.</description></term>
</lookup>
</property>
<property name="Sample Weight" type="float">
<description>Weight (in grams) of the sample collected.</description>
</property>
<property name="Sample Comments" type="blocktext">
<description>Additional comments about this sample, or its collection.</description>
</property>
</ArchaeologicalElement>
<!--ERROR!!!!! This ArchaeologicalEntity does not have identifiers!!! Verify TitleMask in Heurist recordtype!-->
</dataSchema>