FormatOptions

Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
Json object
Excel object
Csv object
View JSON Schema on GitHub

JSON Schema

glue-databrew-format-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-format-options-schema.json",
  "title": "FormatOptions",
  "description": "Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.",
  "type": "object",
  "properties": {
    "Json": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JsonOptions"
        },
        {
          "description": "Options that define how JSON input is to be interpreted by DataBrew."
        }
      ]
    },
    "Excel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExcelOptions"
        },
        {
          "description": "Options that define how Excel input is to be interpreted by DataBrew."
        }
      ]
    },
    "Csv": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CsvOptions"
        },
        {
          "description": "Options that define how CSV input is to be interpreted by DataBrew."
        }
      ]
    }
  }
}