Keboola · Schema

MetadataItemResponse

Single metadata record.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
id integer Metadata record identifier
key string Metadata key
value string Metadata value
provider string Metadata provider identifier
timestamp string Metadata timestamp
View JSON Schema on GitHub

JSON Schema

keboola-metadataitemresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MetadataItemResponse",
  "description": "Single metadata record.",
  "required": [
    "id",
    "key",
    "value",
    "provider",
    "timestamp"
  ],
  "properties": {
    "id": {
      "description": "Metadata record identifier",
      "type": "integer"
    },
    "key": {
      "description": "Metadata key",
      "type": "string"
    },
    "value": {
      "description": "Metadata value",
      "type": "string",
      "nullable": true
    },
    "provider": {
      "description": "Metadata provider identifier",
      "type": "string"
    },
    "timestamp": {
      "description": "Metadata timestamp",
      "type": "string",
      "format": "date-time"
    }
  },
  "type": "object"
}