From a5c19abe877789b7ecac8ab003ffde5ef6ec8ed2 Mon Sep 17 00:00:00 2001 From: Ilya Chukhman Date: Wed, 4 Mar 2020 17:48:20 -0500 Subject: [PATCH] add mac metadata object to 6.2.0 schema --- volatility/schemas/schema-6.2.0.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/volatility/schemas/schema-6.2.0.json b/volatility/schemas/schema-6.2.0.json index 931bae760..47e6d2ab1 100644 --- a/volatility/schemas/schema-6.2.0.json +++ b/volatility/schemas/schema-6.2.0.json @@ -82,6 +82,10 @@ "type": "object", "$comment": "Reserved for future use" }, + "metadata_mac": { + "type": "object", + "$comment": "Reserved for future use" + }, "metadata_format": { "type": "string", "pattern": "^6.[0-9]+.[0-9]+$" @@ -146,6 +150,24 @@ "linux" ], "additionalProperties": false + }, + { + "properties": { + "format": { + "$ref": "#/definitions/metadata_format" + }, + "producer": { + "$ref": "#/definitions/metadata_producer" + }, + "mac": { + "$ref": "#/definitions/metadata_mac" + } + }, + "required": [ + "format", + "mac" + ], + "additionalProperties": false } ] },