forked from tangled.org/core
this repo has no description
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.knot.ack", 4 "needsCbor": true, 5 "needsType": true, 6 "defs": { 7 "main": { 8 "type": "record", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": [ 13 "host", 14 "aturi", 15 "status", 16 "createdAt" 17 ], 18 "properties": { 19 "host": { 20 "type": "string", 21 "description": "the host of the knot that is acking this at-uri" 22 }, 23 "aturi": { 24 "type": "string", 25 "format": "at-uri", 26 "description": "the at-uri to ack" 27 }, 28 "status": { 29 "type": "string", 30 "enum": [ 31 "ACK", 32 "NAK" 33 ] 34 }, 35 "createdAt": { 36 "type": "string", 37 "format": "datetime" 38 } 39 } 40 } 41 } 42 } 43}