Unified.to · Schema

GenaiModel

GenaiModel schema from Unified.to API

IntegrationsUnified API

Properties

Name Type Description
id string
name string
description string
max_tokens number
web_url string
has_temperature boolean
raw object
View JSON Schema on GitHub

JSON Schema

unified-to-genai-model-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-genai-model-schema.json",
  "title": "GenaiModel",
  "description": "GenaiModel schema from Unified.to API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "max_tokens": {
      "type": "number"
    },
    "web_url": {
      "type": "string"
    },
    "has_temperature": {
      "type": "boolean"
    },
    "raw": {
      "type": "object",
      "additionalProperties": true
    }
  }
}