diff --git a/client/schemas/blueprint-spec2-schema.json b/client/schemas/blueprint-spec2-schema.json index 44938cc..49c94b7 100644 --- a/client/schemas/blueprint-spec2-schema.json +++ b/client/schemas/blueprint-spec2-schema.json @@ -71,6 +71,19 @@ }, "icon": { "type": "string" + }, + "blueprint-labels": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/BlueprintLabelObject" + }, + { + "type": "string" + } + ] + } } } }, @@ -1349,6 +1362,26 @@ "required": ["name"], "title": "Launch Form Input Object" }, + "BlueprintLabelObject": { + "type": "object", + "additionalProperties": false, + "properties": { + "key": { + "type": "string" + }, + "value": { + "type": "string" + }, + "initial-color": { + "type": "string" + }, + "initial-quick-filter": { + "type": "boolean" + } + }, + "required": ["key"], + "title": "Blueprint Label Object" + }, "LaunchFormCategoryObject": { "type": "object", "additionalProperties": false,