-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathchangelog.schema.json
More file actions
32 lines (32 loc) · 1.05 KB
/
Copy pathchangelog.schema.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["entries"],
"properties": {
"entries": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "version", "date", "category", "title", "summary"],
"properties": {
"id": { "type": "string" },
"version": { "type": "string" },
"date": { "type": "string", "format": "date" },
"category": { "enum": ["feat", "fix", "breaking", "perf", "docs"] },
"title": { "type": "string", "maxLength": 60 },
"summary": { "type": "string", "maxLength": 200 },
"details": { "type": "string" },
"features": { "type": "array", "items": { "type": "string" } },
"mcpTools": { "type": "array", "items": { "type": "string" } },
"breaking": {
"type": "object",
"properties": {
"description": { "type": "string" },
"migration": { "type": "string" }
}
}
}
}
}
}
}