JsonOptions

Represents the JSON-specific options that define how input is to be interpreted by Glue DataBrew.

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
MultiLine object
View JSON Schema on GitHub

JSON Schema

glue-databrew-json-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-json-options-schema.json",
  "title": "JsonOptions",
  "description": "Represents the JSON-specific options that define how input is to be interpreted by Glue DataBrew.",
  "type": "object",
  "properties": {
    "MultiLine": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MultiLine"
        },
        {
          "description": "A value that specifies whether JSON input contains embedded new line characters."
        }
      ]
    }
  }
}