changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "data": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "confidence": {
+ "type": "number"
+ },
+ "match": {
+ "additionalProperties": true,
+ "properties": {
+ "company": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/person_id"
+ },
+ "display_name": {
+ "type": "string"
+ },
+ "headline": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/person_id"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "person_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "status": {
+ "const": "matched",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "match",
+ "confidence"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "status": {
+ "const": "none",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "alternatives": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "company": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/company"
+ },
+ "confidence": {
+ "type": "number"
+ },
+ "display_name": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/display_name"
+ },
+ "headline": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/headline"
+ },
+ "id": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/id"
+ },
+ "name": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/name"
+ },
+ "person_id": {
+ "$ref": "#/properties/data/anyOf/0/properties/match/properties/person_id"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "const": "ambiguous",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "alternatives"
+ ],
+ "type": "object"
+ }
+ ],
+ "description": "The operation result when ok is true."
+ },
+ "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"
+}