# BigQuery Google BigQuery is a data warehouse platform. ### Schema You can define table schemas via JSON documents which get ingested at the same time as your data using the `bq` tool. #### Data Types Data Types List from [google documentation](https://cloud.google.com/bigquery/docs/schemas#standard_sql_data_types)
Name | Data type | Description |
---|---|---|
[Integer](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#integer_type) | `INT64` | Numeric values without fractional components |
[Floating point](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#floating_point_types) | `FLOAT64` | Approximate numeric values with fractional components |
[Numeric](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric_type) | `NUMERIC` | Exact numeric values with fractional components |
[BigNumeric](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#bignumeric_type) | `BIGNUMERIC` | Exact numeric values with fractional components |
[Boolean](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#boolean_type) | `BOOL` | TRUE or FALSE (case-insensitive) |
[String](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#string_type) | `STRING` | Variable-length character (Unicode) data |
[Bytes](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#bytes_type) | `BYTES` | Variable-length binary data |
[Date](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#date_type) | `DATE` | A logical calendar date |
[Date/Time](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#datetime_type) | `DATETIME` | A year, month, day, hour, minute, second, and subsecond |
[Time](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#time_type) | `TIME` | A time, independent of a specific date |
[Timestamp](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#timestamp_type) | `TIMESTAMP` | An absolute point in time, with microsecond precision |
[Struct (Record)](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#struct_type) | `STRUCT` | Container of ordered fields each with a type (required) and field name (optional) |
[Geography](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#geography_type) | `GEOGRAPHY` | A pointset on the Earth's surface (a set of points, lines and polygons on the [WGS84](http://earth-info.nga.mil/GandG/update/index.php) reference spheroid, with geodesic edges) |
[JSON](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#json_type) | `JSON` | Represents JSON, a lightweight data-interchange format |