this repo has no description
0
fork

Configure Feed

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

lexicon tests: avoid reserved keywords

+3 -3
+1 -1
atproto/lexicon/testdata/catalog/procedure.json
··· 16 16 "type": "integer", 17 17 "description": "field of type integer" 18 18 }, 19 - "string": { 19 + "stringField": { 20 20 "type": "string", 21 21 "description": "field of type string" 22 22 }
+2 -2
atproto/lexicon/testdata/catalog/query.json
··· 10 10 "type": "params", 11 11 "description": "a params type", 12 12 "required": [ 13 - "string" 13 + "stringField" 14 14 ], 15 15 "properties": { 16 16 "boolean": { ··· 21 21 "type": "integer", 22 22 "description": "field of type integer" 23 23 }, 24 - "string": { 24 + "stringField": { 25 25 "type": "string", 26 26 "description": "field of type string" 27 27 },