{
  "$defs": {
    "SourceType": {
      "description": "Supported ingestion source types.",
      "enum": [
        "csv",
        "json",
        "jsonl",
        "parquet",
        "sql",
        "mongo",
        "bigquery",
        "snowflake",
        "pdf",
        "html",
        "transcript",
        "text"
      ],
      "title": "SourceType",
      "type": "string"
    }
  },
  "description": "Describes a single ingestion source.\n\nAttributes:\n    type: The source type.\n    uri: Path, URL, table name, or query \u2014 interpreted per ``type``.\n    options: Connector-specific options (e.g. ``{\"query\": \"...\", \"limit\": 100}``).",
  "properties": {
    "type": {
      "$ref": "#/$defs/SourceType"
    },
    "uri": {
      "title": "Uri",
      "type": "string"
    },
    "options": {
      "additionalProperties": true,
      "title": "Options",
      "type": "object"
    }
  },
  "required": [
    "type",
    "uri"
  ],
  "title": "SourceSpec",
  "type": "object"
}
