mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 07:43:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			375 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			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
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	`
 | |
| }
 |