changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "contacts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "companyName": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "contactId": {
+ "type": "string"
+ },
+ "email": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "jobTitle": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "linkedin": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "organizationId": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "website": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "contactId",
+ "name",
+ "email",
+ "jobTitle",
+ "companyName",
+ "website",
+ "linkedin",
+ "organizationId"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "nextBefore": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "contacts",
+ "nextBefore"
+ ],
+ "type": "object"
+}