Skip to content

Commit b311252

Browse files
committed
Extend appellation
1 parent 0c83d92 commit b311252

File tree

1 file changed

+24
-18
lines changed

1 file changed

+24
-18
lines changed

index.qmd

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CRM defines abstract types of entities (CRM classes) such as events, measurement
2222

2323
- instances of [E60 Number](http://www.cidoc-crm.org/cidoc-crm/E60) are expressed as RDF literals with numeric data type such as `xsd:integer`
2424

25-
The CRM classes [E61 Time Primitive], [E94 Space Primitive], and [E95 Spacetime Primitive] are both subclasses of [E59 Primitive Value] and of [E41 Appellation], so the latter can be used when a mapping to established RDF data types is not applicable.
25+
The CRM classes [E61 Time Primitive], [E94 Space Primitive], and [E95 Spacetime Primitive] are both subclasses of [E59 Primitive Value] and of [E41 Appellation], so [the latter](#e41-appelation) can be used when a mapping to established RDF data types is not applicable.
2626

2727
Instances of **[E61 Time Primitive] and [E52 Time-Span]** are better expressed as RDF literals of type `xsd:date`, `xsd:time`, `xsd:dateTime`, or `xsd:dateTimeStamp` if applicable. More complex time values should be expressed using the [Extended Date/Time Format (EDTF)](https://www.loc.gov/standards/datetime/) but there is no established method to calculate with dates in RDF yet.^[See discussion to extend SPARQL [for simple dates](https://github.com/w3c/sparql-dev/blob/main/SEP/SEP-0002/sep-0002.md) and [EDTF in RDF](https://periodo.github.io/edtf-ontology/).] CRM includes its own classes and properties to model more complex temporal values so this has not been decided yet.
2828

@@ -64,15 +64,6 @@ Instances of [E95 Spacetime Primitive] ... (TODO)
6464
[P172 contains]: http://www.cidoc-crm.org/cidoc-crm/P172
6565
[P168 place is defined by]: http://www.cidoc-crm.org/cidoc-crm/P168
6666

67-
68-
[E52 Time-Span]: http://www.cidoc-crm.org/cidoc-crm/E52
69-
[E53 Place]: http://www.cidoc-crm.org/cidoc-crm/E53
70-
[E41 Appellation]: http://www.cidoc-crm.org/cidoc-crm/E41
71-
[E59 Primitive Value]: http://www.cidoc-crm.org/cidoc-crm/E59
72-
[E61 Time Primitive]: http://www.cidoc-crm.org/cidoc-crm/E61
73-
[E94 Space Primitive]: http://www.cidoc-crm.org/cidoc-crm/E94
74-
[E95 Spacetime Primitive]: http://www.cidoc-crm.org/cidoc-crm/E95
75-
7667
### Authority files and types
7768

7869
CRM class [E32 Authority Document] and CRM property [P71 lists] should not be used in RDF but corresponding SKOS RDF classes `skos:ConceptScheme` and `skos:inScheme`. Applications may define `skos:ConceptScheme` as subclass of [E31 Document] and `skos:inScheme` as subproperty of [P67 refers to] if needed.
@@ -83,13 +74,6 @@ CRM also defines class [E55 Type] with properties [P127 has broader term] and [P
8374
[P127i has narrower term]: http://www.cidoc-crm.org/cidoc-crm/P127i_has_narrower_term
8475
[P71 lists]: http://www.cidoc-crm.org/cidoc-crm/P71
8576
[P67 refers to]: http://www.cidoc-crm.org/cidoc-crm/P67
86-
[E31 Document]: http://www.cidoc-crm.org/cidoc-crm/E31
87-
[E32 Authority Document]: http://www.cidoc-crm.org/cidoc-crm/E32
88-
[E55 Type]: http://www.cidoc-crm.org/cidoc-crm/E55
89-
[E35 Title]: http://www.cidoc-crm.org/cidoc-crm/E35
90-
[E41 Appellation]: http://www.cidoc-crm.org/cidoc-crm/E41
91-
[E55 Identifier]: http://www.cidoc-crm.org/cidoc-crm/E42
92-
[E58 Measurement Unit]: http://www.cidoc-crm.org/cidoc-crm/E58
9377

9478
### CRM Classes to use with caution
9579

@@ -110,7 +94,7 @@ Defintion of instances of [E58 Measurement Unit] should be avoided but either ta
11094

11195
#### E41 Appellation
11296

113-
**[E42 Appellation]** and its subclasses ([E35 Title] and [E42 Identifier]) should be avoided (see [above](#primitive-values) for additional subclasses [E61 Time Primitive], [E94 Space Primitive], and [E94 Space Primitive]):
97+
**[E41 Appellation]** and its subclasses ([E35 Title] and [E42 Identifier]) should be avoided (see [above](#primitive-values) for additional subclasses [E61 Time Primitive], [E94 Space Primitive], and [E94 Space Primitive]), unless a name cannot uniquely be identified with a sequence of Unicode characters and an optional language tag:
11498

11599
~~~ttl
116100
<RMSTitantic>
@@ -125,6 +109,11 @@ If there are multiple names with one preferred name per language and optional na
125109
skos:altLabel "Titanic"@en, "Royal Mail Steamship Titanic"@en .
126110
~~~
127111

112+
The RDF property `skos:prefLabel` should not be confused with [P48 has preferred identifier] to be used for identifiers only.
113+
114+
115+
If information about the act of naming is required, use [E13 Attribute Assignment] for simple appelations or [E15 Identifier Assignment] for identifiers.
116+
128117
If an identifier **[E42 Identifier] is an URI** meant to identify an RDF resource, dont use plain strings but resource URIs in RDF. If a resource happens to have multiple equivalent URIs, choose a preferred URI and use `owl:sameAs` to record aliases:
129118

130119
~~~ttl
@@ -153,3 +142,20 @@ CRM is constantly evolving, so some CRM classes have been renamed or replaced. O
153142

154143
::: {#refs}
155144
:::
145+
146+
[E13 Attribute Assignment]: http://www.cidoc-crm.org/cidoc-crm/E13
147+
[E15 Identifier Assignment]: http://www.cidoc-crm.org/cidoc-crm/E15
148+
[E31 Document]: http://www.cidoc-crm.org/cidoc-crm/E31
149+
[E32 Authority Document]: http://www.cidoc-crm.org/cidoc-crm/E32
150+
[E35 Title]: http://www.cidoc-crm.org/cidoc-crm/E35
151+
[E55 Identifier]: http://www.cidoc-crm.org/cidoc-crm/E42
152+
[E55 Type]: http://www.cidoc-crm.org/cidoc-crm/E55
153+
[E58 Measurement Unit]: http://www.cidoc-crm.org/cidoc-crm/E58
154+
[E52 Time-Span]: http://www.cidoc-crm.org/cidoc-crm/E52
155+
[E53 Place]: http://www.cidoc-crm.org/cidoc-crm/E53
156+
[E41 Appellation]: http://www.cidoc-crm.org/cidoc-crm/E41
157+
[E59 Primitive Value]: http://www.cidoc-crm.org/cidoc-crm/E59
158+
[E61 Time Primitive]: http://www.cidoc-crm.org/cidoc-crm/E61
159+
[E94 Space Primitive]: http://www.cidoc-crm.org/cidoc-crm/E94
160+
[E95 Spacetime Primitive]: http://www.cidoc-crm.org/cidoc-crm/E95
161+

0 commit comments

Comments
 (0)