nginx-proxy-manager/backend/internal/api/schema/update_nginx_template.go
2024-11-21 19:07:36 +10:00

23 lines
375 B
Go

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