This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

stigmergic / lexicons / generated / org / latha / island / getOverview.json
1.1 kB 51 lines
1{ 2 "lexicon": 1, 3 "id": "org.latha.island.getOverview", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get an overview of all indexed collections", 8 "output": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "total_records", 14 "collections" 15 ], 16 "properties": { 17 "total_records": { 18 "type": "integer" 19 }, 20 "collections": { 21 "type": "array", 22 "items": { 23 "type": "ref", 24 "ref": "#collectionStats" 25 } 26 } 27 } 28 } 29 } 30 }, 31 "collectionStats": { 32 "type": "object", 33 "required": [ 34 "collection", 35 "records", 36 "unique_users" 37 ], 38 "properties": { 39 "collection": { 40 "type": "string" 41 }, 42 "records": { 43 "type": "integer" 44 }, 45 "unique_users": { 46 "type": "integer" 47 } 48 } 49 } 50 } 51}