{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobSource", "title": "JobSource", "type": "object", "description": "Information about the source system for the job posting, used to identify the originating ATS or job board.", "required": [ "sourceName" ], "properties": { "sourceName": { "type": "string", "description": "The name of the source system. Must remain consistent across all job postings from the same source.", "example": "my-ats-platform" }, "sourceUrl": { "type": "string", "format": "uri", "description": "The URL of the original job posting on the source system.", "example": "https://www.example.com" } } }