mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 13:48:14 -05: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)
|
||
|
}
|