Hugging Face · Schema
Endpoint
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Endpoint name |
| type | string | Endpoint type |
| accountId | string | |
| provider | object | |
| compute | object | |
| model | object | |
| status | object | |
| url | string | Inference URL for the endpoint |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Endpoint",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Endpoint name"
},
"type": {
"type": "string",
"description": "Endpoint type"
},
"accountId": {
"type": "string"
},
"provider": {
"type": "object"
},
"compute": {
"type": "object"
},
"model": {
"type": "object"
},
"status": {
"type": "object"
},
"url": {
"type": "string",
"description": "Inference URL for the endpoint"
}
}
}