fabsssss commited on
Commit
48ae77a
·
verified ·
1 Parent(s): 0fc1fc6

Upload docs/spectrum-crm-mapping.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. docs/spectrum-crm-mapping.md +62 -0
docs/spectrum-crm-mapping.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Spectrum → CIDOC-CRM mapping (as applied to MoDiP)
2
+
3
+ UK museums catalogue to the **Spectrum** standard (Collections Trust). The Museum
4
+ Data Service exposes those fields as typed units (`spectrum/…`). To publish the
5
+ records as a proper linked-data graph they must be mapped to **CIDOC-CRM**
6
+ (ISO 21127) — the reference ontology for cultural heritage — rather than a
7
+ home-grown schema. This is the crosswalk `src/build_graph.py` implements. It is
8
+ Linked Art compatible (same CRM classes and property paths).
9
+
10
+ The subject `?obj` is a `crm:E22_Human-Made_Object`.
11
+
12
+ | Spectrum unit (MDS) | CIDOC-CRM path | Range class | Notes |
13
+ |---|---|---|---|
14
+ | `object_number` | `?obj crm:P1_is_identified_by ?id` | `E42_Identifier` | content on `P190_has_symbolic_content` |
15
+ | `title` | `?obj crm:P102_has_title ?t` | `E35_Title` | content on `P190` |
16
+ | `brief_description` | `?obj crm:P3_has_note` | literal | also parsed for cross-references (see DAG) |
17
+ | `material` | `?obj crm:P45_consists_of ?c` | `E57_Material` (SKOS concept) | string → concept via the materials taxonomy |
18
+ | `object_name` | `?obj crm:P2_has_type ?c` | `E55_Type` | controlled object-name list (`objectnames.ttl`) |
19
+ | `associated_concept` | `?obj crm:P2_has_type ?c` | `E55_Type` | use-domain taxonomy (`domains.ttl`) |
20
+ | `colour` | `?obj crm:P2_has_type ?c` | `E55_Type` | colour list (`colours.ttl`) |
21
+ | `dimension` | `?obj crm:P43_has_dimension ?d` | `E54_Dimension` | parsed to `P2_has_type` (kind) + `P90_has_value` + `P91_has_unit` |
22
+ | `inscription_content` | `?obj crm:P128_carries ?i` | `E34_Inscription` | content on `P190` |
23
+ | `inscription_method` | `?i crm:P32_used_general_technique ?c` | `E55_Type` | process taxonomy |
24
+ | `inscription_position` | `?i crm:P3_has_note` | literal | prefixed `position:` |
25
+ | `object_production_organisation` | `?prod crm:P14_carried_out_by ?a` | `E74_Group` | via the production event |
26
+ | `object_production_person` | `?prod crm:P14_carried_out_by ?a` | `E21_Person` | via the production event |
27
+ | `organisations_/persons_association` | `?prod crm:P3_has_note` | literal | role, e.g. `Manufacturer: Hoover` |
28
+ | `technique` | `?prod crm:P32_used_general_technique ?c` | `E55_Type` | process taxonomy |
29
+ | `object_production_place` | `?prod crm:P7_took_place_at ?pl` | `E53_Place` | |
30
+ | `object_production_date` | `?prod crm:P4_has_time-span ?ts` | `E52_Time-Span` | 4-digit year → `P82_at_some_time_within`^^`xsd:gYear` |
31
+ | `license_url` | `?obj dct:license ?url` | IRI | per-record rights, retained verbatim |
32
+ | (constant) | `?obj crm:P50_has_current_keeper / P52_has_current_owner` | `E74_Group` | MoDiP |
33
+
34
+ The production event itself is a `crm:E12_Production` reached from the object by
35
+ `crm:P108i_was_produced_by`. Grouping all making-related fields (maker, technique,
36
+ place, date) under one event is the CRM idiom and is what makes the data queryable
37
+ as provenance rather than as flat columns.
38
+
39
+ ### Variant / same-mould DAG
40
+
41
+ `brief_description` frequently names another object's accession number in prose.
42
+ Those references are resolved against the identifier index and emitted as
43
+ object-to-object edges:
44
+
45
+ - "same … different colourway / version / variant" → `crm:P130_shows_features_of`
46
+ - other explicit references → `crm:P67_refers_to`
47
+
48
+ This turns relationships that were readable only by a human reading the caption
49
+ into a graph a machine can traverse.
50
+
51
+ ### Namespaces
52
+
53
+ | prefix | URI |
54
+ |---|---|
55
+ | `crm:` | `http://www.cidoc-crm.org/cidoc-crm/` |
56
+ | `skos:` | `http://www.w3.org/2004/02/skos/core#` |
57
+ | `dct:` | `http://purl.org/dc/terms/` |
58
+ | `aat:` | `http://vocab.getty.edu/aat/` |
59
+ | `mat:` `proc:` `dom:` (this project) | `https://ontology.tesseract.academy/modip/{materials,processes,domains}/` |
60
+
61
+ Only the concept-scheme and instance URIs are minted locally; every class and
62
+ property above is a published open standard.