mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
58 lines
924 B
JSON
58 lines
924 B
JSON
{
|
|
"type": "object",
|
|
"description": "StreamObject",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"id",
|
|
"created_at",
|
|
"updated_at",
|
|
"expires_on",
|
|
"user_id",
|
|
"provider",
|
|
"name",
|
|
"domain_names"
|
|
],
|
|
"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"
|
|
},
|
|
"expires_on": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"user_id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"provider": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 100
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 100
|
|
},
|
|
"domain_names": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "string",
|
|
"minLength": 4
|
|
}
|
|
}
|
|
}
|
|
}
|