From 16b61e17051ef2eb9388cef1f8b83414eb9e6d35 Mon Sep 17 00:00:00 2001 From: Stuart Mumford Date: Thu, 11 Jul 2024 15:36:23 +0100 Subject: [PATCH] Add new Status field to inventory map (#417) * Add new Status field to inventory map * changelog --- changelog/417.feature.rst | 1 + dkist/utils/inventory.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changelog/417.feature.rst diff --git a/changelog/417.feature.rst b/changelog/417.feature.rst new file mode 100644 index 00000000..65cf5c25 --- /dev/null +++ b/changelog/417.feature.rst @@ -0,0 +1 @@ +Add "status" to the list of know dataset inventory fields. diff --git a/dkist/utils/inventory.py b/dkist/utils/inventory.py index cc54d737..9f9f77ca 100644 --- a/dkist/utils/inventory.py +++ b/dkist/utils/inventory.py @@ -72,7 +72,8 @@ def __missing__(self, key): "headerVersion": "Header Specification Version", "headerDocumentationUrl": "Header Documentation URL", "infoUrl": "Info URL", - "calibrationDocumentationUrl": "Calibration Documentation URL" + "calibrationDocumentationUrl": "Calibration Documentation URL", + "status": "Status", })