{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Job Posting","description":"External-facing job advertisement: company blurb, role summary, responsibilities, candidate profile, what's on offer, and how to apply.","type":"object","required":["company","job","role_summary","what_youll_do","what_we_look_for","what_we_offer","application"],"additionalProperties":false,"properties":{"company":{"type":"object","required":["name","about"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"about":{"type":"string","minLength":1}}},"job":{"type":"object","required":["title","location","employment_type"],"additionalProperties":false,"properties":{"title":{"type":"string","minLength":1},"location":{"type":"string","minLength":1},"employment_type":{"type":"string","minLength":1},"contract_duration":{"type":"string"}}},"role_summary":{"type":"string","minLength":1},"what_youll_do":{"type":"array","minItems":3,"items":{"type":"string","minLength":1}},"what_we_look_for":{"type":"array","minItems":2,"items":{"type":"string","minLength":1}},"nice_to_have":{"type":"array","items":{"type":"string","minLength":1}},"what_we_offer":{"type":"array","minItems":2,"items":{"type":"string","minLength":1}},"compensation":{"type":"object","additionalProperties":false,"properties":{"salary_min":{"type":"number","minimum":0},"salary_max":{"type":"number","minimum":0},"notes":{"type":"string"}}},"application":{"type":"object","additionalProperties":false,"properties":{"email":{"type":"string","format":"email"},"url":{"type":"string","format":"uri"},"reference":{"type":"string"},"closing_date":{"type":"string","format":"date"},"contact_name":{"type":"string"},"documents_requested":{"type":"array","items":{"type":"string"}}}}}}