changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "apply_url": {
+ "type": "string"
+ },
+ "attribution": {
+ "type": "string"
+ },
+ "company": {
+ "type": "string"
+ },
+ "country": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description_excerpt": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description_note": {
+ "type": "string"
+ },
+ "employment_type": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "location": {
+ "type": "string"
+ },
+ "logo": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "open_confidence": {
+ "anyOf": [
+ {
+ "enum": [
+ "verified",
+ "unverified"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "posted_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "region": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "remote": {
+ "type": "boolean"
+ },
+ "role_family": {
+ "type": "string"
+ },
+ "salary": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "seniority": {
+ "enum": [
+ "Junior / Entry",
+ "Mid-level",
+ "Senior",
+ "Lead / Staff",
+ "Principal",
+ "Director+"
+ ],
+ "type": "string"
+ },
+ "source": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "workplace": {
+ "anyOf": [
+ {
+ "enum": [
+ "remote",
+ "hybrid",
+ "onsite"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "company",
+ "location",
+ "country",
+ "remote",
+ "workplace",
+ "seniority",
+ "salary",
+ "employment_type",
+ "posted_at",
+ "url",
+ "role_family",
+ "region",
+ "source",
+ "open_confidence",
+ "logo",
+ "apply_url",
+ "description_excerpt",
+ "description_note",
+ "attribution"
+ ],
+ "type": "object"
+}