Link bookmarking tool built on aproto (early alpha)
1export const IngPinboardPinUrl = {
2 "lexicon": 1 as const,
3 "id": "ing.pinboard.pin.url" as const,
4 "defs": {
5 "main": {
6 "type": "record" as const,
7 "key": "tid" as const,
8 "record": {
9 "type": "object" as const,
10 "properties": {
11 "type": {
12 "type": "string",
13 "const": "url",
14 "description": "type of the pin",
15 },
16 "title": {
17 "type": "string",
18 "description": "title of the pin",
19 },
20 "description": {
21 "type": "string",
22 "maxGraphemes": 140,
23 "minGraphemes": 1,
24 "description": "description of the pin",
25 },
26 "url": {
27 "type": "string",
28 "format": "uri",
29 "description": "url of the pin",
30 },
31 "createdAt": {
32 "type": "string",
33 "format": "datetime",
34 },
35 } as const,
36 "required": [
37 "title",
38 "description",
39 "url",
40 "createdAt",
41 ],
42 },
43 },
44 },
45}
46export type TIngPinboardPinUrl = typeof IngPinboardPinUrl