personal memory agent
1{
2 "$schema": "https://json-schema.org/draft/2020-12/schema",
3 "$comment": "Output contract for detect_transcript_segment(). Source of truth is think/detect_transcript_segment.md.",
4 "type": "array",
5 "items": {
6 "type": "object",
7 "additionalProperties": false,
8 "required": ["start_at", "line"],
9 "properties": {
10 "start_at": {"type": "string", "pattern": "^\\d{2}:\\d{2}:\\d{2}$"},
11 "line": {"type": "integer", "minimum": 1}
12 }
13 }
14}