From: Michal Klobukowski Date: Tue, 27 Nov 2018 08:03:14 +0000 (+0100) Subject: Create vocabulary model X-Git-Tag: 1.3.0~5^2^2^2~37 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/80fab904a6ea3f81465e70d879d9d0b722d072e6 Create vocabulary model Feature #14393 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- 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[]; +}