this string has no description
slug.json edited
27 lines 598 B view raw
1{ 2 "lexicon": 1, 3 "id": "com.example.slug", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A human-readable/writable slug pointing to a separate record by the slug's creator.", 8 "key": "any", 9 "record": { 10 "type": "object", 11 "properties": { 12 "type": { 13 "type": "string", 14 "description": "The type of the record this slug points to.", 15 "format": "nsid" 16 }, 17 "key": { 18 "type": "string", 19 "description": "The key of the record this slug points to.", 20 "format": "record-key" 21 } 22 }, 23 "required": ["type", "key"] 24 } 25 } 26 } 27}