Skip to content

Commit

Permalink
(fix) for issue #28 in data-modeling, JSON didn't validate
Browse files Browse the repository at this point in the history
  • Loading branch information
DMSaunders committed Dec 31, 2019
1 parent ba4fa76 commit 38151c9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions content/specs/jobschema-example-files/contents.lr
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Principally, this file is two objects within `@graph`: the `jdx:Organization` fo
},
"jdx:industryCode": {
"@type": "AnnotatedDefinedTerm",
"termCode": "541512",
"termCode": "541512"
},
"schema:address": {
"@type": "schema:PostalAddress",
Expand All @@ -129,7 +129,7 @@ Principally, this file is two objects within `@graph`: the `jdx:Organization` fo
"termCode": "15-1112.00"
},
"schema:telephone": "(406) 234-0987",
"url": "https://acme.com",
"url": "https://acme.com"
},
{
"@id": "https://jobdataexchange.org/jdx/pp/resource/9542b372-6436-4fc1-a5b6-8ca8d3ba04e6",
Expand Down Expand Up @@ -205,7 +205,7 @@ Principally, this file is two objects within `@graph`: the `jdx:Organization` fo
"jdx:hiringOrganization": "https://jobdataexchange.org/jdx/pp/resource/f0a23159-e3c3-43df-94da-b15c749599d0" ,
"jdx:industryCode": {
"@type": "AnnotatedDefinedTerm" ,
"termCode": "541512",
"termCode": "541512"
},
"jdx:jobAgreement": {
"@type": "AnnotatedDefinedTerm" ,
Expand Down Expand Up @@ -255,8 +255,8 @@ Principally, this file is two objects within `@graph`: the `jdx:Organization` fo
}
},
"schema:currency": "USD",
"schema:maxValue": "65000",
"schema:minValue": "45000",
"schema:maxValue": 65000,
"schema:minValue": 45000
},
"schema:datePosted": "2019-09-01",
"schema:description": {
Expand Down Expand Up @@ -292,7 +292,7 @@ Principally, this file is two objects within `@graph`: the `jdx:Organization` fo
"name": {
"en-US": "Commuting/travel assistance"
}
},
}
],
"schema:jobLocation": {
"@type": "schema:Place",
Expand All @@ -308,12 +308,12 @@ Principally, this file is two objects within `@graph`: the `jdx:Organization` fo
"en-US": "Junior Cybersecurity Specialist"
},
"schema:validThrough": "2019-09-30",
"jdx:totalJobOpenings": "1"
"jdx:totalJobOpenings": 1
}
]
}
}
```
---
updated: 2019-10-24
updated: 2019-12-31
---
version: 0.9.0

0 comments on commit 38151c9

Please sign in to comment.