A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 60 lines 1.5 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.dropbox.defs", 4 "defs": { 5 "fileView": { 6 "type": "object", 7 "properties": { 8 "id": { 9 "type": "string", 10 "description": "The unique identifier of the file." 11 }, 12 "name": { 13 "type": "string", 14 "description": "The name of the file." 15 }, 16 "pathLower": { 17 "type": "string", 18 "description": "The lowercased path of the file." 19 }, 20 "pathDisplay": { 21 "type": "string", 22 "description": "The display path of the file." 23 }, 24 "clientModified": { 25 "type": "string", 26 "description": "The last modified date and time of the file on the client.", 27 "format": "datetime" 28 }, 29 "serverModified": { 30 "type": "string", 31 "description": "The last modified date and time of the file on the server.", 32 "format": "datetime" 33 } 34 } 35 }, 36 "fileListView": { 37 "type": "object", 38 "properties": { 39 "files": { 40 "type": "array", 41 "description": "A list of files in the Dropbox.", 42 "items": { 43 "type": "ref", 44 "ref": "app.rocksky.dropbox.defs#fileView" 45 } 46 } 47 } 48 }, 49 "temporaryLinkView": { 50 "type": "object", 51 "properties": { 52 "link": { 53 "type": "string", 54 "description": "The temporary link to access the file.", 55 "format": "uri" 56 } 57 } 58 } 59 } 60}