Skip to main content

dds.sample

Info

Data samples

Structure

KeyNameInfoAdditional Info
PKurnUniform Resource Name of entitydds.entity.urn
column_defColumn names with typeJSON
cnt_rowsRows in saved sample
sample_dataSampleJSON
loaded_byA URN of loaded processUsually contains DAG name
processed_dttmDatetime of ETL record processing

Attributes

AttributeValue
Created2021.10.02
OwnerDate Detective Team
LocationPG

Additional info

cnt_rows

List of column names with data type. Example:

["column1::bigint", "column2::character varying", "column3::integer"]

sample_data

JSON Schema

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"columns": {
"type": "array",
"items": [
{
"type": "string"
}
]
},
"sample_data": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"columnName1": {
"type": "string"
},
"columnName2": {
"type": "string"
}
},
"required": [
"columnNames..."
]
}
]
}
},
"required": [
"columns",
"sample_data"
]
}

Example

{
"columns": [
"column1",
"column2",
"column3"
],
"sample_data": [
{
"column1": 101,
"column2": "value1",
"column3": 1001
},
{
"column1": 102,
"column2": "value2",
"column3": 1003
}
]
}