changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "csvUrl": {
+ "type": "string"
+ },
+ "records": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "company": {
+ "type": "string"
+ },
+ "cost": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "deployed": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "functionArea": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "outcome": {
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "reversed": {
+ "type": "string"
+ },
+ "seat": {
+ "type": "string"
+ },
+ "sourceName": {
+ "type": "string"
+ },
+ "sourceUrl": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "url": {
+ "type": "string"
+ },
+ "vendor": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "company",
+ "vendor",
+ "functionArea",
+ "seat",
+ "outcome",
+ "deployed",
+ "reversed",
+ "cost",
+ "reason",
+ "sourceName",
+ "sourceUrl",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "type": "number"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "records",
+ "csvUrl"
+ ],
+ "type": "object"
+}