personal memory agent
0
fork

Configure Feed

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

at d18a7c02359cd827d0ff15058861de5c2600a96f 27 lines 549 B view raw
1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "type": "object", 4 "additionalProperties": false, 5 "required": ["day", "time", "confidence", "source", "utc"], 6 "properties": { 7 "day": { 8 "type": "string", 9 "pattern": "^\\d{8}$" 10 }, 11 "time": { 12 "type": "string", 13 "pattern": "^\\d{6}$" 14 }, 15 "confidence": { 16 "type": "string", 17 "enum": ["high", "medium", "low"] 18 }, 19 "source": { 20 "type": "string", 21 "minLength": 1 22 }, 23 "utc": { 24 "type": "boolean" 25 } 26 } 27}