Amazon Glue DataBrew · JSON Structure

Glue Databrew Format Options Structure

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

Type: object Properties: 3
Data AnalyticsData PreparationETLMachine Learning

FormatOptions is a JSON Structure definition published by Amazon Glue DataBrew, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Json Excel Csv

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-structure/glue-databrew-format-options-structure.json",
  "name": "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."
        }
      ]
    }
  }
}