Skip to content

Commit 39e97b7

Browse files
authored
Document bug; metadate uses datetime (#452)
Co-authored-by: Joshua <[email protected]>
1 parent 186b817 commit 39e97b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/Metadata.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ These overrides should be used with caution, because they may affect privacy if
5555

5656
## Column Options
5757

58-
* `type`: Required. The type attribute indicates the simple type for all values in the column. Type may be one of “int”, “float”, “string”, “boolean”, or “date”. The “date” type includes date or time types. If type is set to "unknown", the column will be ignored by the system.
58+
* `type`: Required. The type attribute indicates the simple type for all values in the column. Type may be one of “int”, “float”, “string”, “boolean”, or “datetime”. The “datetime” type includes date or time types. If type is set to "unknown", the column will be ignored by the system.
5959
* `private_key`: Boolean. Default is `False`. indicates that this column is the private identifier (e.g. “UserID”, “Household”). This column is optional. Only columns which have private_id set to ‘true’ are treated as individuals subject to privacy protection.
6060
* `lower`: Valid on numeric columns. Specifies the lower bound for values in this column.
6161
* `upper`: Valid on numeric columns. Specifies the upper bound for values in this column.

sql/docs/source/metadata.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ These overrides should be used with caution, because they may affect privacy if
9595
Column Options
9696
--------------
9797

98-
* ``type``: Required. The type attribute indicates the simple type for all values in the column. Type may be one of “int”, “float”, “string”, “boolean”, or “date”. The “date” type includes date or time types. If type is set to "unknown", the column will be ignored by the system.
98+
* ``type``: Required. The type attribute indicates the simple type for all values in the column. Type may be one of “int”, “float”, “string”, “boolean”, or “datetime”. The “datetime” type includes date or time types. If type is set to "unknown", the column will be ignored by the system.
9999
* ``private_id``: Boolean. Default is ``False``. indicates that this column is the private identifier (e.g. “UserID”, “Household”). This column is optional. Only columns which have private_id set to true are treated as individuals subject to privacy protection.
100100
* ``lower``: Valid on numeric columns. Specifies the lower bound for values in this column.
101101
* ``upper``: Valid on numeric columns. Specifies the upper bound for values in this column.

0 commit comments

Comments
 (0)