Is there a way to display the column description against each column? Inside the “meta” > “column” the description is not displaying anything in data docs.
For e.g.
"last_visited": {
"description": "Last visited date and timestamp."
},
I understand the notes inside meta for each expectation can be rendered in the UI. But how to do it for column level (mostly as a data catalogue or data dictionary)
You can use this feature to add the description of a column. As a convention, we usually attach column description to the expect_column_to_exist expectation:
batch.expect_column_to_exist(
“brand”,
meta={
“notes”: {
“format”: “markdown”,
“content”: [
“Example notes about this column. MarkdownSupported.”,
“Second example of a note about this column withMarkdown”,
]
}
}
)
+1 to following up on this thread. Is there a way to render the column descriptions, independent of packaging the description in an expectation? The reply to this thread by @eugene.mandel mentions documenting the column in an expect_column_to_exist expectation by convention. Does that mean the description from “meta” > “column” isn’t intended to be rendered in the documentation? Thanks!