Skip to content
Snippets Groups Projects
Commit 83874f00 authored by David Maus's avatar David Maus
Browse files

Add property foaf:homepage to entities

parent 69f6c984
No related branches found
No related tags found
No related merge requests found
# Wiederverwendbare Definition von Eigenschaften aus Dublin Core Qualified # Wiederverwendbare Definition von Eigenschaften aus Dublin Core Qualified
# #
# Autor: David Maus <maus@hab.de> # Autor: David Maus <maus@hab.de>
# Timestamp: <2019-01-16 12:27:31 maus> # Timestamp: <2019-01-16 12:29:00 maus>
# #
namespace dct = "http://purl.org/dc/terms/" namespace dct = "http://purl.org/dc/terms/"
namespace foaf = "http://xmlns.com/foaf/0.1/"
namespace rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" namespace rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
namespace owl = "http://www.w3.org/2002/07/owl#" namespace owl = "http://www.w3.org/2002/07/owl#"
namespace skos = "http://www.w3.org/2004/02/skos/core#" namespace skos = "http://www.w3.org/2004/02/skos/core#"
...@@ -54,17 +55,25 @@ property.label = ...@@ -54,17 +55,25 @@ property.label =
& text & text
} }
property.homepage =
element foaf:homepage {
attribute rdf:resource { xsd:anyURI }
& empty
}
model.Entity = ( model.internalEntity | model.externalEntity ) model.Entity = ( model.internalEntity | model.externalEntity )
model.internalEntity = model.internalEntity =
attribute rdf:about { xsd:anyURI }? attribute rdf:about { xsd:anyURI }?
& property.label & property.label
& property.homepage
model.externalEntity = model.externalEntity =
element owl:sameAs { element owl:sameAs {
attribute rdf:resource { xsd:anyURI } attribute rdf:resource { xsd:anyURI }
}* }*
& property.label & property.label
& property.homepage
model.rdfLiteral = model.rdfLiteral =
attribute rdf:datatype { xsd:anyURI }? attribute rdf:datatype { xsd:anyURI }?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment