mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
58 lines
979 B
JSON
58 lines
979 B
JSON
{
|
|
"type": "object",
|
|
"description": "CertificateAuthorityObject",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"id",
|
|
"created_at",
|
|
"updated_at",
|
|
"name",
|
|
"acmesh_server",
|
|
"ca_bundle",
|
|
"max_domains",
|
|
"is_wildcard_supported",
|
|
"is_readonly"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"created_at": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"description": "Created Unix time with milliseconds"
|
|
},
|
|
"updated_at": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"description": "Updated Unix time with milliseconds"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 100
|
|
},
|
|
"acmesh_server": {
|
|
"type": "string",
|
|
"minLength": 2,
|
|
"maxLength": 255
|
|
},
|
|
"ca_bundle": {
|
|
"type": "string",
|
|
"minLength": 0,
|
|
"maxLength": 255
|
|
},
|
|
"max_domains": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"is_wildcard_supported": {
|
|
"type": "boolean"
|
|
},
|
|
"is_readonly": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|