Request body for creating or updating job postings
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-talent-job-posting-simple-job-posting-request-schema.json", "title": "SimpleJobPostingRequest", "description": "Request body for creating or updating job postings", "type": "object", "properties": { "elements": { "type": "array", "items": { "$ref": "#/components/schemas/JobPostingElement" } } }, "required": [ "elements" ] }