-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathE0078.ttl
More file actions
25 lines (25 loc) · 1.05 KB
/
E0078.ttl
File metadata and controls
25 lines (25 loc) · 1.05 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
ex:SomeContract a dpv:Contract ;
dpv:hasContractualClause [
a dpv:ContractualClause ; # types of clause - use one or many
skos:broader dpv:ContractPreamble ;
skos:broader dpv:ContractDefinitions ;
skos:broader dpv:ContractJurisdictionClause ;
rdf:value "Contents ..."@en ; # directly embed contents
foaf:page "..."^^xsd:anyURI ; # URL
dct:format "..."^^xsd:anyURI ; # different formats e.g. languages
# Fulfilment status can be within the clause
dpv:hasContractualFulfilmentStatus [
a dpv:ContractStatus ;
skos:broader dpv:ContractFulfilled ;
dct:date "2024-12-31"^^xsd:date ;
] ;
] ;
# OR, Fulfilment status can also be expressed per entity
# with a reference to a common clause or template
dpv:hasContractualFulfilmentStatus [
a dpv:ContractStatus ;
skos:broader dpv:ContractFulfilled ;
dpv:hasContractualClause ex:SomeClause ;
dpv:hasEntity ex:SomeEntity ;
dct:date "2024-12-31"^^xsd:date ;
] .