Fix build and code structure improvements. New but essential UI functionality. CI improvements. Documentation improvements. AI module improvements.
This commit is contained in:
29
policies/schemas/policy-pack.schema.json
Normal file
29
policies/schemas/policy-pack.schema.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://stellaops.io/schemas/policy-pack.schema.json",
|
||||
"title": "Policy Pack Schema",
|
||||
"description": "Schema for StellaOps policy pack definitions.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"description": "The name of the policy pack."
|
||||
},
|
||||
"version": {
|
||||
"type": "string",
|
||||
"description": "The version of the policy pack."
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
"description": "A description of the policy pack."
|
||||
},
|
||||
"rules": {
|
||||
"type": "array",
|
||||
"description": "The rules in the policy pack.",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["name", "version"]
|
||||
}
|
||||
6
policies/starter-day1.yaml
Normal file
6
policies/starter-day1.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
# Starter Day-1 Policy Pack
|
||||
# This is a minimal stub file for build compatibility.
|
||||
name: starter-day1
|
||||
version: 1.0.0
|
||||
description: Starter policy pack for day-1 security controls.
|
||||
rules: []
|
||||
Reference in New Issue
Block a user