Unified.to · Schema

GenaiContent

IntegrationsUnified API

Properties

Name Type Description
content string
role string
View JSON Schema on GitHub

JSON Schema

unified-to-genaicontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GenaiContent",
  "title": "GenaiContent",
  "properties": {
    "content": {
      "type": "string"
    },
    "role": {
      "enum": [
        "SYSTEM",
        "USER",
        "ASSISTANT"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "content"
  ],
  "type": "object"
}