1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2025-12-06 14:52:50 +08:00
Files
xiaomusic/holiday/schema.json

30 lines
851 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/NateScarlet/holiday-cn/master/schema.json",
"type": "object",
"properties": {
"year": {
"type": "number",
"description": "年份"
},
"papers": {
"type": "array",
"items": { "type": "string" },
"description": "所用国务院文件网址列表"
},
"days": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string", "description": "节日名称" },
"date": { "type": "string", "description": "ISO 8601 日期" },
"isOffDay": { "type": "boolean", "description": "是否为休息日" }
},
"required": ["name", "date", "isOffDay"]
}
}
},
"required": ["year", "papers", "days"]
}