hydra-api: flesh out JobsetInput schema

This commit is contained in:
Cole Helbling 2021-04-27 16:06:49 -07:00
parent 2600810551
commit 72fec31dbb
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C
2 changed files with 16 additions and 0 deletions

View file

@ -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: ???

View file

@ -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"
}