chore: Add new schemas (no-changelog) (#13215)

This commit is contained in:
Jon
2025-02-13 09:40:35 +00:00
committed by GitHub
parent f001edb2a2
commit 0c6eb6eaef
38 changed files with 3095 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
{
"type": "object",
"properties": {
"metadata": {
"type": "object",
"properties": {
".tag": {
"type": "string"
},
"name": {
"type": "string"
},
"path_lower": {
"type": "string"
},
"path_display": {
"type": "string"
},
"id": {
"type": "string"
},
"client_modified": {
"type": "string"
},
"server_modified": {
"type": "string"
},
"rev": {
"type": "string"
},
"size": {
"type": "integer"
},
"is_downloadable": {
"type": "boolean"
},
"content_hash": {
"type": "string"
},
"parent_shared_folder_id": {
"type": "string"
},
"sharing_info": {
"type": "object",
"properties": {
"read_only": {
"type": "boolean"
},
"parent_shared_folder_id": {
"type": "string"
},
"modified_by": {
"type": "string"
}
},
"required": [
"read_only",
"parent_shared_folder_id",
"modified_by"
]
}
},
"required": [
".tag",
"name",
"path_lower",
"path_display",
"id"
]
}
}
}