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": {
+ "intro": {
+ "additionalProperties": true,
+ "properties": {
+ "connector_name": {
+ "type": "string"
+ },
+ "connector_person_id": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "notes": {
+ "$ref": "#/properties/data/properties/intro/properties/target_org"
+ },
+ "resolved_person_id": {
+ "$ref": "#/properties/data/properties/intro/properties/target_org"
+ },
+ "status": {
+ "type": "string"
+ },
+ "target_name": {
+ "type": "string"
+ },
+ "target_org": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "intro"
+ ],
+ "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"
+}