Skip to content

Commit 71b0a38

Browse files
authored
Add jobDuration property to JobPosting (#4475)
As requested in #4475 this new property allows to add durations to a jobPosting allowing to model job offers that are limited in time.
1 parent 4a8cb7e commit 71b0a38

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

data/ext/pending/issue-4475.ttl

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@prefix : <https://schema.org/> .
2+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
3+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
5+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
6+
7+
:jobDuration a rdf:Property ;
8+
rdfs:label "jobDuration" ;
9+
:domainIncludes :JobPosting ;
10+
:isPartOf <https://pending.schema.org> ;
11+
:rangeIncludes :Duration ;
12+
:source <https://github.com/schemaorg/schemaorg/issues/4475> ;
13+
rdfs:comment "The expected duration of an employment offer as advertised by the employer. Relevant for job postings that have a clearly defined period in mind such as seasonal work, substitutes for maternal leave or any other temporary employment." .

0 commit comments

Comments
 (0)