addedOutput schema / properties / databases / items / properties / application / anyOf
Added value: +[
+ {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": [
+ "string",
+ "number"
+ ]
+ },
+ "location": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / databases / items / properties / application / type
Removed value: -[
- "string",
- "null"
-]
addedOutput schema / properties / databases / items / properties / backups / items
Added value: +{
+ "type": "number"
+}
addedOutput schema / properties / databases / items / properties / backups / type
Added value: +"array"
addedOutput schema / properties / databases / items / properties / permissions / items
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "rights": {
+ "additionalProperties": false,
+ "properties": {
+ "admin": {
+ "type": "boolean"
+ },
+ "read": {
+ "type": "boolean"
+ },
+ "write": {
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ },
+ "user": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "user"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / databases / items / properties / permissions / type
Added value: +"array"