nginx-proxy-manager/src/backend/schema/index.json

37 lines
797 B
JSON
Raw Normal View History

2018-06-19 18:47:26 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "root",
"title": "Nginx Proxy Manager REST API",
"description": "This is the Nginx Proxy Manager REST API",
"version": "2.0.0",
"links": [
{
"href": "http://npm.example.com/api",
"rel": "self"
}
],
"properties": {
"tokens": {
"$ref": "endpoints/tokens.json"
},
"users": {
"$ref": "endpoints/users.json"
2018-07-08 21:22:10 -04:00
},
"proxy-hosts": {
"$ref": "endpoints/proxy-hosts.json"
},
"redirection-hosts": {
"$ref": "endpoints/redirection-hosts.json"
},
"dead-hosts": {
"$ref": "endpoints/dead-hosts.json"
},
"streams": {
"$ref": "endpoints/streams.json"
2018-08-07 06:27:20 -04:00
},
"certificates": {
"$ref": "endpoints/certificates.json"
2018-06-19 18:47:26 -04:00
}
}
}