changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "clusters": {
+ "items": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "clusterName": {
+ "type": "string"
+ },
+ "projectId": {
+ "type": "string"
+ },
+ "projectName": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "connectionStrings": {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "instanceSize": {
+ "type": "string"
+ },
+ "instanceType": {
+ "enum": [
+ "FREE",
+ "DEDICATED",
+ "FLEX"
+ ],
+ "type": "string"
+ },
+ "mongoDBVersion": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "paused": {
+ "type": "boolean"
+ },
+ "processIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "region": {
+ "type": "string"
+ },
+ "state": {
+ "enum": [
+ "IDLE",
+ "CREATING",
+ "UPDATING",
+ "DELETING",
+ "REPAIRING"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "instanceType",
+ "paused"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ "type": "array"
+ },
+ "projectId": {
+ "type": "string"
+ },
+ "projectName": {
+ "type": "string"
+ },
+ "totalCount": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "clusters",
+ "totalCount"
+ ],
+ "type": "object"
+}