{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Job", "title": "Job", "type": "object", "properties": { "id": { "type": "integer", "format": "int64" }, "title": { "type": "string" }, "description": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "company_name": { "type": "string" }, "company_url": { "type": "string" }, "location": { "type": "string" }, "country": { "type": "string" }, "region": { "type": "string" }, "seniority_level": { "type": "string" }, "employment_type": { "type": "string" }, "application_active": { "type": "boolean" }, "time_posted": { "type": "string" }, "date_posted": { "type": "string", "format": "date-time" }, "salary_currency": { "type": "string" }, "salary_min": { "type": "number" }, "salary_max": { "type": "number" }, "last_updated": { "type": "string", "format": "date-time" } } }