gen-json-schemas
Version:
A Javascript package to generate JSON schemas dynamically
22 lines • 535 B
text/typescript
const JobPosting = {
"@context": "https://schema.org/",
"@type": "JobPosting",
"title": "",
"description": "",
"hiringOrganization": {
"@type": "Organization",
"name": ""
},
"datePosted": "",
"validThrough": "",
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"streetAddress": "",
"addressLocality": "",
"postalCode": "",
"addressCountry": ""
}
}
}