This repository has no description
0

Configure Feed

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

core / lexicons / repo / listSecrets.json
1.4 kB 70 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.listSecrets", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": [ 10 "repo" 11 ], 12 "properties": { 13 "repo": { 14 "type": "string", 15 "format": "at-uri" 16 } 17 } 18 }, 19 "output": { 20 "encoding": "application/json", 21 "schema": { 22 "type": "object", 23 "required": [ 24 "secrets" 25 ], 26 "nullable": [ 27 "secrets" 28 ], 29 "properties": { 30 "secrets": { 31 "type": "array", 32 "items": { 33 "type": "ref", 34 "ref": "#secret" 35 } 36 } 37 } 38 } 39 } 40 }, 41 "secret": { 42 "type": "object", 43 "required": [ 44 "repo", 45 "key", 46 "createdAt", 47 "createdBy" 48 ], 49 "properties": { 50 "repo": { 51 "type": "string", 52 "format": "at-uri" 53 }, 54 "key": { 55 "type": "string", 56 "maxLength": 50, 57 "minLength": 1 58 }, 59 "createdAt": { 60 "type": "string", 61 "format": "datetime" 62 }, 63 "createdBy": { 64 "type": "string", 65 "format": "did" 66 } 67 } 68 } 69 } 70}