From 4b34f1e502f1e2059df96491fd2d4561cae8601a Mon Sep 17 00:00:00 2001 From: Jan Snasel Date: Wed, 28 Feb 2024 10:00:29 +0000 Subject: [PATCH] chore: Copy cloud app config schema --- .../app-config-schema.json | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 nautobot_device_lifecycle_mgmt/app-config-schema.json diff --git a/nautobot_device_lifecycle_mgmt/app-config-schema.json b/nautobot_device_lifecycle_mgmt/app-config-schema.json new file mode 100644 index 00000000..583df2fa --- /dev/null +++ b/nautobot_device_lifecycle_mgmt/app-config-schema.json @@ -0,0 +1,22 @@ +{ + "type": "object", + "properties": { + "expired_field": { + "type": "string", + "default": "end_of_support" + }, + "barchart_bar_width": { + "type": "number", + "default": 0.1 + }, + "barchart_width": { + "type": "integer", + "default": 12 + }, + "barchart_height": { + "type": "integer", + "default": 5 + } + }, + "additionalProperties": false +}