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:
|
JobsetInput:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
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:
|
jobsetinputalts:
|
||||||
type: array
|
type: array
|
||||||
description: ???
|
description: ???
|
||||||
|
|
|
@ -135,6 +135,13 @@ __PACKAGE__->has_many(
|
||||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5uKwEhDXso4IR1TFmwRxiA
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5uKwEhDXso4IR1TFmwRxiA
|
||||||
|
|
||||||
my %hint = (
|
my %hint = (
|
||||||
|
string_columns => [
|
||||||
|
"name",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
boolean_columns => [
|
||||||
|
"emailresponsible"
|
||||||
|
],
|
||||||
relations => {
|
relations => {
|
||||||
"jobsetinputalts" => "value"
|
"jobsetinputalts" => "value"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue