-
Notifications
You must be signed in to change notification settings - Fork 0
/
marital.ttl
57 lines (50 loc) · 2.68 KB
/
marital.ttl
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix scovo: <http://purl.org/NET/scovo#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix sdmx: <http://purl.org/linked-data/sdmx#> .
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix cedar-maritalstatus: <http://lod.cedar-project.nl/vocab/cedar-maritalstatus#> .
cedar-maritalstatus:maritalStatus a qb:DimensionProperty, rdf:Property ;
rdfs:range cedar-maritalstatus:MaritalStatus;
qb:concept cedar-maritalstatus:MaritalStatus;
rdfs:label "Marital status"@en ;
rdfs:comment "A person's marital status indicates whether the person is married"@en ;
cedar-maritalstatus:maritalStatusScheme a skos:ConceptScheme;
skos:prefLabel "Code list for marital status - codelist scheme"@en;
rdfs:label "Code list for marital status - codelist scheme"@en;
skos:notation "CL_MARITALSTATUS";
skos:note "This code list provides the marital status of a target census group"@en;
skos:definition <http://wcts.whitman.edu/ais/core/VAL.MARITAL.STATUSES.htm> ;
rdfs:seeAlso cedar-maritalstatus:MaritalStatus ;
skos:hasTopConcept cedar-maritalstatus:married ;
skos:hasTopConcept cedar-maritalstatus:single .
cedar-maritalstatus:MaritalStatus a rdfs:Class, owl:Class;
rdfs:subClassOf skos:Concept ;
rdfs:label "Code list for marital status - codelist class"@en;
rdfs:comment "A marital status defines the relationship between two persons"@en;
rdfs:seeAlso cedar-maritalstatus:maritalstatus .
cedar-maritalstatus:married a skos:Concept, cedar-maritalstatus:MaritalStatus;
skos:topConceptOf cedar-maritalstatus:maritalStatusScheme;
skos:prefLabel "Married"@en ;
skos:prefLabel "Gehuwd"@nl ;
skos:notation "M" ;
skos:inScheme cedar-maritalstatus:maritalStatusScheme .
cedar-maritalstatus:single a skos:Concept, cedar-maritalstatus:MaritalStatus;
skos:topConceptOf cedar-maritalstatus:maritalstatus;
skos:prefLabel "Single"@en ;
skos:prefLabel "Ongehuwd"@nl ;
skos:notation "S" ;
skos:narrower cedar-maritalstatus:widow ;
skos:inScheme cedar-maritalstatus:maritalStatusScheme .
cedar-maritalstatus:widow a skos:Concept, cedar-maritalstatus:MaritalStatus;
skos:broader cedar-maritalstatus:single ;
skos:prefLabel "Widow"@en ;
skos:prefLabel "Weduwe"@nl ;
skos:notation "W" ;
skos:inScheme cedar-maritalstatus:maritalStatusScheme .