elevenlabs · Schema

CreateProjectRequest

Properties

Name Type Description
name string Display name for the project.
default_voice_id string The default voice identifier for the project.
default_model_id string The default TTS model for the project.
from_url string A URL to import content from.
from_document string A document file to import content from.
View JSON Schema on GitHub

JSON Schema

elevenlabs-createprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateProjectRequest",
  "title": "CreateProjectRequest",
  "type": "object",
  "required": [
    "name",
    "default_voice_id"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the project."
    },
    "default_voice_id": {
      "type": "string",
      "description": "The default voice identifier for the project."
    },
    "default_model_id": {
      "type": "string",
      "description": "The default TTS model for the project."
    },
    "from_url": {
      "type": "string",
      "format": "uri",
      "description": "A URL to import content from."
    },
    "from_document": {
      "type": "string",
      "format": "binary",
      "description": "A document file to import content from."
    }
  }
}