{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","required":["company","candidate","offer","compensation"],"properties":{"company":{"type":"object","required":["name","address"],"properties":{"name":{"type":"string"},"address":{"type":"string"},"email":{"type":"string"},"phone":{"type":"string"}}},"candidate":{"type":"object","required":["name"],"properties":{"name":{"type":"string"},"address":{"type":"string"}}},"offer":{"type":"object","required":["title","date","start_date","contract_type"],"properties":{"title":{"type":"string"},"department":{"type":"string"},"date":{"type":"string"},"start_date":{"type":"string"},"contract_type":{"type":"string","enum":["permanent","fixed-term","part-time"]},"duration":{"type":"string"},"location":{"type":"string"},"reports_to":{"type":"string"}}},"compensation":{"type":"object","required":["salary","frequency"],"properties":{"salary":{"type":"string"},"currency":{"type":"string","default":"EUR"},"frequency":{"type":"string","enum":["monthly","annually"]},"benefits":{"type":"array","items":{"type":"string"}},"bonus":{"type":"string"}}},"conditions":{"type":"array","items":{"type":"string"}},"response_deadline":{"type":"string"},"signatures":{"type":"object","required":["company_representative"],"properties":{"company_representative":{"type":"string"},"candidate_name":{"type":"string"}}}}}