This repository has no description
0

Configure Feed

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

core / lexicons / git / defs.json
527 B 25 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.git.defs", 4 "defs": { 5 "signature": { 6 "type": "object", 7 "required": ["name", "email", "when"], 8 "properties": { 9 "name": { 10 "type": "string", 11 "description": "Person name" 12 }, 13 "email": { 14 "type": "string", 15 "description": "Person email" 16 }, 17 "when": { 18 "type": "string", 19 "format": "datetime", 20 "description": "Timestamp of the signature" 21 } 22 } 23 } 24 } 25}