This commit is contained in:
Dax Raad
2025-05-30 14:40:53 -04:00
parent 42c7880858
commit e9bad39a7e
7 changed files with 69 additions and 31 deletions

View File

@@ -775,16 +775,44 @@
"type": "string",
"pattern": "^ses"
},
"shareID": {
"type": "string"
"share": {
"type": "object",
"properties": {
"secret": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"secret",
"url"
]
},
"title": {
"type": "string"
},
"time": {
"type": "object",
"properties": {
"created": {
"type": "number"
},
"updated": {
"type": "number"
}
},
"required": [
"created",
"updated"
]
}
},
"required": [
"id",
"title"
"title",
"time"
]
},
"Provider.Info": {