Hugging Face · Schema
CreateEndpointRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Unique endpoint name |
| type | string | Endpoint security type |
| provider | object | |
| compute | object | |
| model | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CreateEndpointRequest",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Unique endpoint name"
},
"type": {
"type": "string",
"description": "Endpoint security type"
},
"provider": {
"type": "object"
},
"compute": {
"type": "object"
},
"model": {
"type": "object"
}
}
}