projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Create vocabulary model
[arvados.git]
/
src
/
models
/
vocabulary.ts
1
// Copyright (C) The Arvados Authors. All rights reserved.
2
//
3
// SPDX-License-Identifier: AGPL-3.0
4
5
export interface Vocabulary {
6
strict: boolean;
7
tags: Tag[];
8
}
9
10
export interface Tag {
11
strict: boolean;
12
values: string[];
13
}