changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "displayName": {
+ "type": "string"
+ },
+ "email": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "onBehalfOf": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "displayName": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "displayName",
+ "id"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "principalType": {
+ "enum": [
+ "human",
+ "agent"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "displayName",
+ "email",
+ "id",
+ "onBehalfOf",
+ "principalType"
+ ],
+ "type": "object"
+}