{
  "$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": "A structured (tabular) row destined for the warehouse.\n\nAttributes:\n    data: The row as a column\u2192value mapping.\n    source_type: The originating source type.\n    uri: The originating URI/table.",
  "properties": {
    "data": {
      "additionalProperties": true,
      "title": "Data",
      "type": "object"
    },
    "source_type": {
      "anyOf": [
        {
          "$ref": "#/$defs/SourceType"
        },
        {
          "type": "null"
        }
      ],
      "default": null
    },
    "uri": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Uri"
    }
  },
  "required": [
    "data"
  ],
  "title": "Record",
  "type": "object"
}
