···2222 "maxGraphemes": 300,
2323 "description": "The description of the recipe."
2424 },
2525+ "image": {
2626+ "type": "blob",
2727+ "description": "The recipe's cover image.",
2828+ "accept": ["image/*"],
2929+ "maxSize": 1000000
3030+ },
2531 "time": {
2632 "type": "integer",
2733 "description": "The amount of time (in minutes) the recipe takes to complete."
+2
libs/lexicons/src/atcute.ts
···102102 * Maximum grapheme length: 300
103103 */
104104 description?: string;
105105+ /** The recipe's cover image. */
106106+ image?: At.Blob;
105107 /** The amount of time (in minutes) the recipe takes to complete. */
106108 time?: number;
107109 }