nginx-proxy-manager/backend/internal/api/schema/update_host_template.go

23 lines
373 B
Go

package schema
// UpdateHostTemplate is the schema for incoming data validation
func UpdateHostTemplate() string {
return `
{
"type": "object",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"template": {
"type": "string",
"minLength": 20
}
}
}
`
}