changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "coverLetter": {
+ "type": "string"
+ },
+ "education": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "degree": {
+ "description": "e.g. BSc, MSc, PhD",
+ "type": "string"
+ },
+ "end_date": {
+ "description": "ISO date; omit if ongoing",
+ "type": "string"
+ },
+ "field_of_study": {
+ "type": "string"
+ },
+ "school": {
+ "description": "School or university name",
+ "type": "string"
+ },
+ "start_date": {
+ "description": "ISO date, e.g. 2019-09-01",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "email": {
+ "type": "string"
+ },
+ "experience": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "company": {
+ "description": "Company name",
+ "type": "string"
+ },
+ "current": {
+ "description": "Set true if this is the current role",
+ "type": "boolean"
+ },
+ "end_date": {
+ "description": "ISO date; omit if current role",
+ "type": "string"
+ },
+ "industry": {
+ "type": "string"
+ },
+ "start_date": {
+ "description": "ISO date, e.g. 2020-01-01",
+ "type": "string"
+ },
+ "summary": {
+ "description": "Role description",
+ "type": "string"
+ },
+ "title": {
+ "description": "Job title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "firstname": {
+ "type": "string"
+ },
+ "headline": {
+ "type": "string"
+ },
+ "lastname": {
+ "type": "string"
+ },
+ "phone": {
+ "type": "string"
+ },
+ "resume": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "email"
+ ],
+ "type": "object"
+}