fix(common): Fix persistence schema

This commit is contained in:
Bernd Schorgers 2024-03-11 11:01:23 +01:00
parent 6d70e92b44
commit 9fa045e337
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC

View file

@ -96,6 +96,28 @@
"identifier": { "identifier": {
"type": "string" "type": "string"
}, },
"defaultMode": {
"type": "integer",
"format": "int32"
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"mode": {
"format": "int32",
"type": "integer"
},
"path": {
"type": "string"
}
}
}
},
"advancedMounts": {"$ref": "#/advancedMounts"}, "advancedMounts": {"$ref": "#/advancedMounts"},
"globalMounts": {"$ref": "#/globalMounts"} "globalMounts": {"$ref": "#/globalMounts"}
}, },
@ -128,6 +150,28 @@
"identifier": { "identifier": {
"type": "string" "type": "string"
}, },
"defaultMode": {
"type": "integer",
"format": "int32"
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"mode": {
"format": "int32",
"type": "integer"
},
"path": {
"type": "string"
}
}
}
},
"advancedMounts": {"$ref": "#/advancedMounts"}, "advancedMounts": {"$ref": "#/advancedMounts"},
"globalMounts": {"$ref": "#/globalMounts"} "globalMounts": {"$ref": "#/globalMounts"}
}, },