| 1 | { |
| 2 | "$schema" "https://json-schema.org/draft/2020-12/schema", |
| 3 | "type" "object", |
| 4 | "required" ["name", "version"], |
| 5 | "properties" { |
| 6 | "name" { "type": "string", "minLength": 1 }, |
| 7 | "version" { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" }, |
| 8 | "tags" { |
| 9 | "type" "array", |
| 10 | "items" { "type": "string" } |
| 11 | } |
| 12 | }, |
| 13 | "additionalProperties" false |
| 14 | } |
| 15 |