changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "data": {
+ "additionalProperties": true,
+ "description": "The operation result when ok is true.",
+ "properties": {
+ "confirmation_token": {
+ "type": "string"
+ },
+ "created": {
+ "type": "boolean"
+ },
+ "person_id": {
+ "type": "string"
+ },
+ "potential_duplicates": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "company": {
+ "$ref": "#/properties/data/properties/potential_duplicates/items/properties/person_id"
+ },
+ "display_name": {
+ "type": "string"
+ },
+ "headline": {
+ "$ref": "#/properties/data/properties/potential_duplicates/items/properties/person_id"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "person_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "error": {
+ "description": "A human-readable error when ok is false.",
+ "type": "string"
+ },
+ "ok": {
+ "description": "Whether noticed completed the operation.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "ok"
+ ],
+ "type": "object"
+}