{ "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 } }, "user": { "$ref": "#/components/schemas/UserObject" } } }