changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "bloodGroup": {
+ "type": "string"
+ },
+ "dateOfBirth": {
+ "additionalProperties": false,
+ "properties": {
+ "age": {
+ "type": "number"
+ },
+ "date": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "age"
+ ],
+ "type": "object"
+ },
+ "education": {
+ "additionalProperties": false,
+ "properties": {
+ "abbreviation": {
+ "type": "string"
+ },
+ "course": {
+ "type": "string"
+ },
+ "degree": {
+ "type": "string"
+ },
+ "graduationYear": {
+ "type": "number"
+ },
+ "university": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "university",
+ "abbreviation",
+ "degree",
+ "course",
+ "graduationYear"
+ ],
+ "type": "object"
+ },
+ "email": {
+ "type": "string"
+ },
+ "firstName": {
+ "type": "string"
+ },
+ "fullName": {
+ "type": "string"
+ },
+ "genotype": {
+ "type": "string"
+ },
+ "lastName": {
+ "type": "string"
+ },
+ "lga": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "maritalStatus": {
+ "type": "string"
+ },
+ "nextOfKin": {
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "fullName": {
+ "type": "string"
+ },
+ "phone": {
+ "type": "string"
+ },
+ "relationship": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "fullName",
+ "relationship",
+ "phone",
+ "address"
+ ],
+ "type": "object"
+ },
+ "phone": {
+ "type": "string"
+ },
+ "salary": {
+ "additionalProperties": false,
+ "properties": {
+ "amount": {
+ "type": "number"
+ },
+ "currency": {
+ "type": "string"
+ },
+ "frequency": {
+ "type": "string"
+ },
+ "level": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "amount",
+ "currency",
+ "level",
+ "frequency"
+ ],
+ "type": "object"
+ },
+ "state": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "vehicle": {
+ "additionalProperties": false,
+ "properties": {
+ "color": {
+ "type": "string"
+ },
+ "licensePlate": {
+ "type": "string"
+ },
+ "make": {
+ "type": "string"
+ },
+ "model": {
+ "type": "string"
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "licensePlate",
+ "make",
+ "model",
+ "year",
+ "color"
+ ],
+ "type": "object"
+ },
+ "work": {
+ "additionalProperties": false,
+ "properties": {
+ "company": {
+ "type": "string"
+ },
+ "industry": {
+ "type": "string"
+ },
+ "position": {
+ "type": "string"
+ },
+ "startYear": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "company",
+ "position",
+ "industry",
+ "startYear"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "title",
+ "firstName",
+ "lastName",
+ "fullName",
+ "email",
+ "phone",
+ "address",
+ "state",
+ "lga",
+ "dateOfBirth",
+ "maritalStatus",
+ "bloodGroup",
+ "genotype",
+ "salary",
+ "nextOfKin",
+ "education",
+ "work",
+ "vehicle"
+ ],
+ "type": "object"
+}