Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the model. |
| canonical_name | string | Canonical identifier for the model. |
| architecture | string | Architecture of the model. |
| languages | array | Languages supported by the model. |
| version | string | Version of the model. |
| uuid | string | Unique identifier for the model. |
| metadata | object | Additional metadata about the model. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Model",
"title": "Model",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the model."
},
"canonical_name": {
"type": "string",
"description": "Canonical identifier for the model."
},
"architecture": {
"type": "string",
"description": "Architecture of the model."
},
"languages": {
"type": "array",
"items": {
"type": "string"
},
"description": "Languages supported by the model."
},
"version": {
"type": "string",
"description": "Version of the model."
},
"uuid": {
"type": "string",
"description": "Unique identifier for the model."
},
"metadata": {
"type": "object",
"additionalProperties": true,
"description": "Additional metadata about the model."
}
}
}