gcp_bigquery_client/model/information_schema/
schemata.rs

1#[derive(Debug, Default, Clone, Serialize, Deserialize)]
2#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
3pub struct Schemata {
4    /// The name of the project that contains the dataset
5    pub catalog_name: String,
6    /// The dataset's name also referred to as the datasetId
7    pub schema_name: String,
8    /// The value is always NULL
9    pub schema_owner: Option<String>,
10    /// The dataset's creation time
11    pub creation_time: String, // ToDo should a TIMESTAMP
12    /// The dataset's last modified time
13    pub last_modified_time: String, // ToDo should a TIMESTAMP
14    /// The dataset's geographic location
15    pub location: String,
16}