Skip to content

Commit 7002f49

Browse files
committed
Address use of E42 Identifier (#2)
1 parent 4cdb8b8 commit 7002f49

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

index.qmd

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,22 +68,28 @@ CRM also defines class [E55 Type] with properties [P127 has broader term] and [P
6868
[E31 Document]: http://www.cidoc-crm.org/cidoc-crm/E31
6969
[E32 Authority Document]: http://www.cidoc-crm.org/cidoc-crm/E32
7070
[E55 Type]: http://www.cidoc-crm.org/cidoc-crm/E55
71+
[E55 Identifier]: http://www.cidoc-crm.org/cidoc-crm/E42
7172
7273
### CRM Classes to use with caution
7374
7475
#### E42 Identifier
7576
76-
Don't use E42_Identifier for URIs. So use
77+
Don't use [E42 Identifier] for URIs if these URIs are meant to identify an RDF resource. If a resource happens to have multiple equivalent URIs, choose a preferred URI and use `owl:sameAs` to record aliases.
7778
7879
~~~ttl
79-
<something> crm:P1_is_identified_by <http://example.org/> .
80+
<http://www.wikidata.org/entity/Q3018259> a crm:E18_Physical Thing ;
81+
owl:sameAs <http://kbpedia.org/kko/rc/RMS-Titanic-TheShip> .
8082
~~~
8183

8284
instead of
8385

8486
~~~ttl
85-
<something> crm:P1_is_identified_by [
86-
a crm:E42_Identifier ; crm:P90_has_value "http://example.org/" ] .
87+
<x> a crm:E18_Physical Thing .
88+
crm:P1_is_identified_by
89+
[ a crm:E42_Identifier ;
90+
crm:P190_has_symbolic_content "http://www.wikidata.org/entity/Q3018259" ] ,
91+
[ a crm:E42_Identifier ;
92+
crm:P190_has_symbolic_content "http://kbpedia.org/kko/rc/RMS-Titanic-TheShip" ] .
8793
~~~
8894

8995
### Deprecated CRM classes

0 commit comments

Comments
 (0)