changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "code": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "creditsCharged": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "number"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "error": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "message": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "ownAccount": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "boolean"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "posts": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "items": {},
+ "type": "array"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "profileUrl": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "profileUrn": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "requestsUsed": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "number"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "stopReason": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "success": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "boolean"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "type": "object"
+}