changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "projectId": {
+ "type": "string"
+ },
+ "totalCount": {
+ "type": "number"
+ },
+ "users": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "roles": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "collectionName": {
+ "type": "string"
+ },
+ "databaseName": {
+ "type": "string"
+ },
+ "roleName": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "roleName",
+ "databaseName"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "scopes": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "CLUSTER",
+ "DATA_LAKE",
+ "STREAM"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "username": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "username",
+ "roles",
+ "scopes"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "projectId",
+ "users",
+ "totalCount"
+ ],
+ "type": "object"
+}