this repo has no description
at main 1.3 kB view raw
1{ 2 "capabilities": { 3 "urn:ietf:params:jmap:core": { 4 "maxSizeUpload": 50000000, 5 "maxConcurrentUpload": 4, 6 "maxSizeRequest": 10000000, 7 "maxConcurrentRequests": 4, 8 "maxCallsInRequest": 16, 9 "maxObjectsInGet": 500, 10 "maxObjectsInSet": 500, 11 "collationAlgorithms": ["i;ascii-casemap", "i;unicode-casemap"] 12 } 13 }, 14 "accounts": { 15 "acc1": { 16 "name": "Personal Account", 17 "isPersonal": true, 18 "isReadOnly": false, 19 "accountCapabilities": { 20 "urn:ietf:params:jmap:core": {}, 21 "urn:ietf:params:jmap:mail": {} 22 } 23 }, 24 "acc2": { 25 "name": "Shared Account", 26 "isPersonal": false, 27 "isReadOnly": true, 28 "accountCapabilities": { 29 "urn:ietf:params:jmap:core": {}, 30 "urn:ietf:params:jmap:mail": {} 31 } 32 } 33 }, 34 "primaryAccounts": { 35 "urn:ietf:params:jmap:core": "acc1", 36 "urn:ietf:params:jmap:mail": "acc1" 37 }, 38 "username": "user@example.com", 39 "apiUrl": "https://api.example.com/jmap/", 40 "downloadUrl": "https://api.example.com/download/{accountId}/{blobId}/{name}?accept={type}", 41 "uploadUrl": "https://api.example.com/upload/{accountId}/", 42 "eventSourceUrl": "https://api.example.com/eventsource/?types={types}&closeafter={closeafter}&ping={ping}", 43 "state": "session123" 44}