-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschemaExt.ttl
155 lines (139 loc) · 6.86 KB
/
schemaExt.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://schema.org> a owl:Ontology, voaf:Vocabulary ;
rdfs:label "Schema.org extension proposal for job market"@en,
"Návrh rozšíření Schema.org pro trh práce"@cs ;
dcterms:contributor <http://richard.cyganiak.de/#me>,
<http://mynarz.net/#jindrich>,
[
a foaf:Person ;
foaf:name "Josef Šlerka"
],
[
a foaf:Person ;
foaf:name "Eliška Hutníková"
],
[
a foaf:Person ;
foaf:name "Vojtěch Hýža"
] ;
dcterms:license <http://creativecommons.org/licenses/by/3.0/cz/> ;
vann:preferredNamespaceUri <http://schema.org/> ;
vann:preferredNamespacePrefix "schema"
.
schema:Compensation a rdfs:Class ;
rdfs:label "Compensation"@en, "Kompenzace"@cs ;
rdfs:comment "Compensation describes how the worker is paid for the work done"@en,
"Kompenzace určuje, jak je zaměstnanec placen za odvedenou práci"@cs ;
rdfs:subClassOf schema:QuantitativeValue ;
rdfs:isDefinedBy <http://schema.org>
.
schema:WorkExperience a rdfs:Class ;
rdfs:label "Work experience"@en, "Pracovní zkušenost"@cs ;
rdfs:comment "Job applicant's work history that demonstrates skills or competences"@en,
"Pracovní zkušenost žadatele/ky o práci demonstrující nabyté schopnosti nebo kompetence"@cs ;
rdfs:subClassOf schema:StructuredValue ;
rdfs:isDefinedBy <http://schema.org>
.
schema:currency a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "currency"@en, "měna"@cs ;
rdfs:comment "Currency (in 3-letter ISO 4217 format), in which compensation is paid"@en,
"Měna (v 3-místném formátu ISO 4217), ve které je vyplácena kompenzace"@cs ;
vann:usageNote "Cardinality 1..1"@en, "Kardinalita 1..1"@cs ;
schema:domainIncludes schema:Compensation ;
schema:rangeIncludes schema:Text ;
rdfs:isDefinedBy <http://schema.org>
.
schema:type a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "type"@en, "typ"@cs ;
rdfs:comment "Type of compensation. Recommended values are: annual, monthly, hourly, fixed."@en,
"Způsob výpočtu a vyplácení kompenzace. Doporučené hodnoty jsou: roční, měsíční, hodinová, fixní."@cs ;
vann:usageNote "Cardinality 1..1"@en, "Kardinalita 1..1"@cs ;
schema:domainIncludes schema:Compensation ;
schema:rangeIncludes schema:Text ;
rdfs:isDefinedBy <http://schema.org>
.
schema:availableVacancies a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "available vacancies"@en, "počet nabízených míst"@cs ;
rdfs:comment "Number of persons sought for a job. Default value is 1."@en, "Počet osob požadovaných pro práci. Výchozí hodnotou je 1."@cs ;
vann:usageNote "Cardinality 0..1"@en, "Kardinalita 0..1"@cs ;
schema:domainIncludes schema:JobPosting ;
schema:rangeIncludes xsd:positiveInteger ;
rdfs:isDefinedBy <http://schema.org>
.
schema:compensation a rdf:Property, owl:ObjectProperty ;
rdfs:label "compensation"@en, "kompenzace"@cs ;
rdfs:comment "Compensation paid by employer to employee as stated in job posting"@en,
"Kompenzace hrazená zaměstnavatelem zaměstnanci popsaná v nabídce práce"@cs ;
vann:usageNote "Cardinality: n..n"@en, "Kardinalita: n..n"@cs ;
schema:domainIncludes schema:JobPosting ;
schema:rangeIncludes schema:Compensation ;
rdfs:isDefinedBy <http://schema.org>
.
schema:contact a rdf:Property, owl:ObjectProperty ;
rdfs:label "contact"@en, "kontakt"@cs ;
rdfs:comment "Contact information job seeker needs to respond to job posting"@en,
"Kontaktní informace, které jsou zapotřebí proto, aby uchazeč o práci mohl odpovědět na nabídku práce"@cs ;
vann:usageNote "Cardinality: n..n"@en, "Kardinalita: n..n"@cs ;
schema:domainIncludes schema:JobPosting ;
schema:rangeIncludes schema:ContactPoint ;
rdfs:isDefinedBy <http://schema.org>
.
schema:employer a owl:FunctionalProperty, owl:ObjectProperty ;
rdfs:label "employer"@en, "zaměstnavatel"@cs ;
rdfs:comment "Property relating job postings to persons or organizations offering a job"@en,
"Vlastnost propojující nabídky práce s osobami nebo organizacemi, které práci nabízejí"@cs ;
vann:usageNote "Cardinality: 0..1"@en, "Kardinalita: 0..1"@cs ;
schema:domainIncludes schema:JobPosting ;
schema:rangeIncludes schema:Organization, schema:Person ;
rdfs:isDefinedBy <http://schema.org>
.
schema:isRemoteWork a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "is remote work"@en, "práce na dálku"@cs ;
rdfs:comment "Indicates job postings for which location of execution does not matter (i.e. remote work)"@en,
"Označení nabídek práce, pro které na místu výkonu nezáleží (tj. práce na dálku)"@cs ;
vann:usageNote "Cardinality: 0..1"@en, "Kardinalita: 0..1"@cs ;
schema:domainIncludes schema:JobPosting ;
schema:rangeIncludes schema:Boolean ;
rdfs:isDefinedBy <http://schema.org>
.
schema:startDate a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "start date"@en, "datum nástupu"@cs ;
rdfs:comment "Date when employment starts"@en,
"Datum zahájení práce"@cs ;
vann:usageNote "Cardinality: 0..1"@en, "Kardinalita: 0..1"@cs ;
schema:domainIncludes schema:JobPosting ;
schema:rangeIncludes schema:Date ;
rdfs:isDefinedBy <http://schema.org>
.
schema:duration a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "duration"@en, "délka"@cs ;
rdfs:comment "Length of period during which job applicant acquired experience"@en,
"Délka trvání zkušenosti žadatele/ky o práci"@cs ;
vann:usageNote "Cardinality: 0..1"@en, "Kardinalita: 0..1"@cs ;
schema:domainIncludes schema:WorkExperience ;
schema:rangeIncludes schema:Duration ;
rdfs:isDefinedBy <http://schema.org>
.
schema:references a owl:FunctionalProperty, owl:DatatypeProperty ;
rdfs:label "references"@en, "reference"@cs ;
rdfs:comment "Indicates whether applicant is able to provide contact for references"@en,
"Ukazuje, zda žadatel/ka může uvést kontakt pro poskytnutí reference k minulé práci"@cs ;
vann:usageNote "Cardinality: 0..1"@en, "Kardinalita: 0..1"@cs ;
schema:domainIncludes schema:WorkExperience ;
schema:rangeIncludes schema:Boolean ;
rdfs:isDefinedBy <http://schema.org>
.
schema:hiringOrganization rdfs:subPropertyOf schema:employer .
schema:experienceRequirements a owl:ObjectProperty ;
schema:rangeIncludes schema:WorkExperience .
schema:industry vann:usageNote "Includes also private employment etc."@en,
"Zahrnuje také kategorie zaměstnání fyzickými osobami atp."@cs
.