Field

A key-value pair defining a pipeline object property.

Data ProcessingETLWorkflowsData PipelineAutomation

Properties

Name Type Description
key string
stringValue string
refValue string
View JSON Schema on GitHub

JSON Schema

field-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-pipeline/json-schema/field-schema.json",
  "title": "Field",
  "description": "A key-value pair defining a pipeline object property.",
  "type": "object",
  "required": [
    "key"
  ],
  "properties": {
    "key": {
      "type": "string"
    },
    "stringValue": {
      "type": "string"
    },
    "refValue": {
      "type": "string"
    }
  }
}