mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
18 lines
283 B
Go
18 lines
283 B
Go
package schema
|
|
|
|
import "fmt"
|
|
|
|
// UpdateSetting is the schema for incoming data validation
|
|
func UpdateSetting() string {
|
|
return fmt.Sprintf(`
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"minProperties": 1,
|
|
"properties": {
|
|
"value": %s
|
|
}
|
|
}
|
|
`, anyType)
|
|
}
|