From 80fab904a6ea3f81465e70d879d9d0b722d072e6 Mon Sep 17 00:00:00 2001 From: Michal Klobukowski Date: Tue, 27 Nov 2018 09:03:14 +0100 Subject: [PATCH] Create vocabulary model Feature #14393 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- src/models/vocabulary.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/models/vocabulary.ts diff --git a/src/models/vocabulary.ts b/src/models/vocabulary.ts new file mode 100644 index 00000000..3dbd4756 --- /dev/null +++ b/src/models/vocabulary.ts @@ -0,0 +1,13 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: AGPL-3.0 + +export interface Vocabulary { + strict: boolean; + tags: Tag[]; +} + +export interface Tag { + strict: boolean; + values: string[]; +} -- 2.30.2