this repo has no description
0
fork

Configure Feed

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

add more catalog entries

+126 -1
+78
atproto/lexicon/testdata/catalog/procedure.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "example.lexicon.procedure", 4 + "description": "demonstrates lexicon features for the procedure type", 5 + "defs": { 6 + "main": { 7 + "type": "procedure", 8 + "parameters": { 9 + "type": "params", 10 + "properties": { 11 + "boolean": { 12 + "type": "boolean", 13 + "description": "field of type boolean" 14 + }, 15 + "integer": { 16 + "type": "integer", 17 + "description": "field of type integer" 18 + }, 19 + "string": { 20 + "type": "string", 21 + "description": "field of type string" 22 + } 23 + } 24 + }, 25 + "input": { 26 + "encoding": "application/json", 27 + "schema": { 28 + "type": "object", 29 + "required": [ 30 + "preferences" 31 + ], 32 + "properties": { 33 + "preferences": { 34 + "type": "ref", 35 + "ref": "app.bsky.actor.defs#preferences" 36 + } 37 + } 38 + } 39 + }, 40 + "output": { 41 + "encoding": "application/json", 42 + "schema": { 43 + "type": "object", 44 + "required": [], 45 + "properties": { 46 + "blob": { 47 + "type": "blob", 48 + "description": "field of type blob" 49 + }, 50 + "unknown": { 51 + "type": "unknown", 52 + "description": "field of type unknown" 53 + }, 54 + "array": { 55 + "type": "array", 56 + "description": "field of type array", 57 + "items": { 58 + "type": "integer" 59 + } 60 + }, 61 + "object": { 62 + "type": "object", 63 + "description": "field of type null", 64 + "properties": { 65 + "a": { 66 + "type": "integer" 67 + }, 68 + "b": { 69 + "type": "integer" 70 + } 71 + } 72 + } 73 + } 74 + } 75 + } 76 + } 77 + } 78 + }
+1 -1
atproto/lexicon/testdata/catalog/record.json
··· 2 2 "lexicon": 1, 3 3 "id": "example.lexicon.record", 4 4 "revision": 1, 5 - "description": "exercizes many lexicon features for the record type", 5 + "description": "demonstrates lexicon features for the record type", 6 6 "defs": { 7 7 "main": { 8 8 "type": "record",
+47
atproto/lexicon/testdata/catalog/subscription.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "example.lexicon.subscription", 4 + "description": "demonstrates lexicon features for the subscription type", 5 + "defs": { 6 + "main": { 7 + "type": "subscription", 8 + "parameters": { 9 + "type": "params", 10 + "properties": { 11 + "cursor": { 12 + "type": "integer", 13 + "description": "start at the given sequence number" 14 + } 15 + } 16 + }, 17 + "message": { 18 + "schema": { 19 + "type": "union", 20 + "refs": ["#yo", "#info"] 21 + } 22 + }, 23 + "errors": [{ "name": "FutureCursor" }] 24 + }, 25 + "yo": { 26 + "type": "object", 27 + "required": ["seq", "yo"], 28 + "properties": { 29 + "seq": { "type": "integer" }, 30 + "yo": { "type": "boolean" } 31 + } 32 + }, 33 + "info": { 34 + "type": "object", 35 + "required": ["name"], 36 + "properties": { 37 + "name": { 38 + "type": "string", 39 + "knownValues": ["OutdatedCursor"] 40 + }, 41 + "message": { 42 + "type": "string" 43 + } 44 + } 45 + } 46 + } 47 + }