export const JobListQuery = Schema.Struct({
// No description appears
testField0: Schema.NumberFromString,
// Description: "a string to be decoded into a number"
testField1: Schema.NumberFromString.pipe(Schema.greaterThanOrEqualTo(1)),
// No description appears
testField2: Schema.NumberFromString.annotations({
description: "Test field 2"
}),
// Description: "Test field 3"
testField3: Schema.String.annotations({
description: "Test field 3"
})
})
export const JobListQuery = Schema.Struct({
// No description appears
testField0: Schema.NumberFromString,
// Description: "a string to be decoded into a number"
testField1: Schema.NumberFromString.pipe(Schema.greaterThanOrEqualTo(1)),
// No description appears
testField2: Schema.NumberFromString.annotations({
description: "Test field 2"
}),
// Description: "Test field 3"
testField3: Schema.String.annotations({
description: "Test field 3"
})
})