2022-05-11 18:47:31 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"description": "HostObject",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"created_on",
|
|
|
|
"modified_on",
|
|
|
|
"expires_on",
|
|
|
|
"user_id",
|
|
|
|
"provider",
|
|
|
|
"name",
|
|
|
|
"domain_names"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"created_on": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"modified_on": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"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
|
|
|
|
}
|
2023-01-13 18:50:32 -05:00
|
|
|
},
|
|
|
|
"user": {
|
|
|
|
"$ref": "#/components/schemas/UserObject"
|
2022-05-11 18:47:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|