mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-22 21:08:13 -05:00
dfe2588523
- /schema now returns full openapi/swagger schema - That schema is used to validate incoming requests - And used as a contract in future integration tests - Moved route files up one level - Fixed incorrect 404 reponses when getting objects - Fixed saving new objects and passing jsonschemavalidation
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"type": "object",
|
|
"description": "404 Host object",
|
|
"required": ["id", "created_on", "modified_on", "owner_user_id", "domain_names", "certificate_id", "ssl_forced", "hsts_enabled", "hsts_subdomains", "http2_support", "advanced_config", "enabled", "meta"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"id": {
|
|
"$ref": "../common.json#/definitions/id"
|
|
},
|
|
"created_on": {
|
|
"$ref": "../common.json#/definitions/created_on"
|
|
},
|
|
"modified_on": {
|
|
"$ref": "../common.json#/definitions/modified_on"
|
|
},
|
|
"owner_user_id": {
|
|
"$ref": "../common.json#/definitions/user_id"
|
|
},
|
|
"domain_names": {
|
|
"$ref": "../common.json#/definitions/domain_names"
|
|
},
|
|
"certificate_id": {
|
|
"$ref": "../common.json#/definitions/certificate_id"
|
|
},
|
|
"ssl_forced": {
|
|
"$ref": "../common.json#/definitions/ssl_forced"
|
|
},
|
|
"hsts_enabled": {
|
|
"$ref": "../common.json#/definitions/hsts_enabled"
|
|
},
|
|
"hsts_subdomains": {
|
|
"$ref": "../common.json#/definitions/hsts_subdomains"
|
|
},
|
|
"http2_support": {
|
|
"$ref": "../common.json#/definitions/http2_support"
|
|
},
|
|
"advanced_config": {
|
|
"type": "string"
|
|
},
|
|
"enabled": {
|
|
"$ref": "../common.json#/definitions/enabled"
|
|
},
|
|
"meta": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|