Standard.site landing page built in Next.js
0

Configure Feed

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

Fix maxLength / Graphemes

+12 -12
+8 -8
app/data/lexicons/document.json
··· 24 24 "tags": { 25 25 "type": "array", 26 26 "items": { 27 - "type": "string", 28 - "maxLength": 100, 29 - "maxGraphemes": 50 27 + "type": "string" 30 28 }, 31 - "description": "Array of strings used to tag or categorize the document. Avoid prepending tags with hashtags." 29 + "maxLength": 1280, 30 + "description": "Array of strings used to tag or categorize the document. Avoid prepending tags with hashtags.", 31 + "maxGraphemes": 128 32 32 }, 33 33 "title": { 34 34 "type": "string", 35 - "maxLength": 1280, 35 + "maxLength": 5000, 36 36 "description": "Title of the document.", 37 - "maxGraphemes": 128 37 + "maxGraphemes": 500 38 38 }, 39 39 "content": { 40 40 "refs": [], ··· 62 62 }, 63 63 "description": { 64 64 "type": "string", 65 - "maxLength": 3000, 65 + "maxLength": 30000, 66 66 "description": "A brief description or excerpt from the document.", 67 - "maxGraphemes": 300 67 + "maxGraphemes": 3000 68 68 }, 69 69 "publishedAt": { 70 70 "type": "string",
+4 -4
app/data/lexicons/publication.json
··· 26 26 }, 27 27 "name": { 28 28 "type": "string", 29 - "maxLength": 1280, 29 + "maxLength": 5000, 30 30 "description": "Name of the publication.", 31 - "maxGraphemes": 128 31 + "maxGraphemes": 500 32 32 }, 33 33 "basicTheme": { 34 34 "ref": "site.standard.theme.basic", ··· 37 37 }, 38 38 "description": { 39 39 "type": "string", 40 - "maxLength": 3000, 40 + "maxLength": 30000, 41 41 "description": "Brief description of the publication.", 42 - "maxGraphemes": 300 42 + "maxGraphemes": 3000 43 43 }, 44 44 "preferences": { 45 45 "ref": "#preferences",