forked from lix-project/hydra
hydra-api: flesh out JobsetInput schema
This commit is contained in:
parent
2600810551
commit
72fec31dbb
|
@ -553,6 +553,15 @@ components:
|
|||
JobsetInput:
|
||||
type: object
|
||||
properties:
|
||||
name:
|
||||
description: name of the input
|
||||
type: string
|
||||
type:
|
||||
description: type of input
|
||||
type: string
|
||||
emailresponsible:
|
||||
description: whether or not to email responsible parties
|
||||
type: boolean
|
||||
jobsetinputalts:
|
||||
type: array
|
||||
description: ???
|
||||
|
|
|
@ -135,6 +135,13 @@ __PACKAGE__->has_many(
|
|||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5uKwEhDXso4IR1TFmwRxiA
|
||||
|
||||
my %hint = (
|
||||
string_columns => [
|
||||
"name",
|
||||
"type"
|
||||
],
|
||||
boolean_columns => [
|
||||
"emailresponsible"
|
||||
],
|
||||
relations => {
|
||||
"jobsetinputalts" => "value"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue