From 9db8c5bab58148ebf172809ee393f8d8bed8866c Mon Sep 17 00:00:00 2001 From: Jan Snasel Date: Thu, 7 Mar 2024 11:35:16 +0000 Subject: [PATCH] fix: Revert changes --- .../app-config-schema.json | 31 ++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/nautobot_firewall_models/app-config-schema.json b/nautobot_firewall_models/app-config-schema.json index 27ba77d..e4a2de1 100644 --- a/nautobot_firewall_models/app-config-schema.json +++ b/nautobot_firewall_models/app-config-schema.json @@ -1 +1,30 @@ -true +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://raw.githubusercontent.com/nautobot/nautobot-app-firewall-models/develop/nautobot_firewall_models/app-config-schema.json", + "$comment": "TBD: Update $id, replace `develop` with the future release tag", + "type": "object", + "properties": { + "allowed_status": { + "type": "array", + "items": { + "type": "string" + }, + "default": [ + "Active" + ] + }, + "capirca_remark_pass": { + "type": "boolean", + "default": true + }, + "capirca_os_map": { + "type": "object", + "default": {} + }, + "protect_on_delete": { + "type": "boolean", + "default": true + } + }, + "additionalProperties": false +}