{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://github.com/aquaproj/aqua/v2/pkg/policy/config-yaml", "$ref": "#/$defs/ConfigYAML", "$defs": { "ConfigYAML": { "properties": { "registries": { "items": { "$ref": "#/$defs/Registry" }, "type": "array" }, "packages": { "items": { "$ref": "#/$defs/Package" }, "type": "array" } }, "additionalProperties": false, "type": "object", "required": [ "registries" ] }, "Package": { "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "registry": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Registry": { "properties": { "name": { "type": "string" }, "type": { "type": "string", "enum": [ "standard", "local", "github_content" ] }, "repo_owner": { "type": "string" }, "repo_name": { "type": "string" }, "ref": { "type": "string" }, "path": { "type": "string" } }, "additionalProperties": false, "type": "object" } } }