feat(1c): add weekly digest and hard priority pages

This commit is contained in:
igor04091968
2026-05-22 16:03:04 +03:00
parent 70d12dca1d
commit ee4eea7e1a
8 changed files with 994 additions and 1 deletions
+115
View File
@@ -0,0 +1,115 @@
{
"type": "object",
"additionalProperties": false,
"required": [
"headline",
"summary",
"top_priorities",
"improvements",
"actions",
"caveats"
],
"properties": {
"headline": {
"type": "string",
"minLength": 1,
"maxLength": 180
},
"summary": {
"type": "array",
"minItems": 3,
"maxItems": 7,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 280
}
},
"top_priorities": {
"type": "array",
"maxItems": 5,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"company",
"priority",
"reason",
"recommended_action"
],
"properties": {
"company": {
"type": "string",
"minLength": 1,
"maxLength": 160
},
"priority": {
"type": "string",
"minLength": 1,
"maxLength": 32
},
"reason": {
"type": "string",
"minLength": 1,
"maxLength": 280
},
"recommended_action": {
"type": "string",
"minLength": 1,
"maxLength": 280
}
}
}
},
"improvements": {
"type": "array",
"maxItems": 5,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"company",
"signal",
"meaning"
],
"properties": {
"company": {
"type": "string",
"minLength": 1,
"maxLength": 160
},
"signal": {
"type": "string",
"minLength": 1,
"maxLength": 280
},
"meaning": {
"type": "string",
"minLength": 1,
"maxLength": 280
}
}
}
},
"actions": {
"type": "array",
"minItems": 2,
"maxItems": 6,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 280
}
},
"caveats": {
"type": "array",
"minItems": 1,
"maxItems": 5,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 280
}
}
}
}