1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use std::cell::RefCell;

use serde_json::Value;

use crate::{
    schema::{generate_string_schema, SchemaGenerator, SchemaObject},
    Configurable, GenerateError, Metadata, ToValue,
};

impl Configurable for chrono_tz::Tz {
    fn metadata() -> Metadata {
        let mut metadata = Metadata::default();
        metadata.set_description("An IANA timezone.");
        metadata
    }

    fn generate_schema(_: &RefCell<SchemaGenerator>) -> Result<SchemaObject, GenerateError> {
        Ok(generate_string_schema())
    }
}

impl ToValue for chrono_tz::Tz {
    fn to_value(&self) -> Value {
        Value::String(self.to_string())
    }
}