Restructure solution layout by module

This commit is contained in:
master
2025-10-28 15:10:40 +02:00
parent 95daa159c4
commit d870da18ce
4103 changed files with 192899 additions and 187024 deletions

View File

@@ -0,0 +1,97 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://stellaops.example/schemas/chromium-post.schema.json",
"type": "object",
"required": [
"postId",
"title",
"detailUrl",
"published",
"cves",
"platforms",
"versions",
"references"
],
"properties": {
"postId": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"detailUrl": {
"type": "string",
"format": "uri"
},
"published": {
"type": "string",
"format": "date-time"
},
"updated": {
"type": ["string", "null"],
"format": "date-time"
},
"summary": {
"type": ["string", "null"]
},
"cves": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string",
"pattern": "^CVE-\\d{4}-\\d{4,}$"
}
},
"platforms": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
},
"versions": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": ["platform", "channel", "version"],
"properties": {
"platform": {
"type": "string",
"minLength": 1
},
"channel": {
"type": "string",
"minLength": 1
},
"version": {
"type": "string",
"minLength": 4
}
}
}
},
"references": {
"type": "array",
"items": {
"type": "object",
"required": ["url", "kind"],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"kind": {
"type": "string",
"minLength": 1
},
"label": {
"type": ["string", "null"]
}
}
}
}
}
}