add mac metadata object to 6.2.0 schema

This commit is contained in:
Ilya Chukhman
2020-03-26 13:32:30 +00:00
committed by ikelos
parent be1faa91a5
commit a5c19abe87
+22
View File
@@ -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
}
]
},