sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// OpenApi
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct OpenApi {
    pub extension: crate::models::OpenApiExtensionEnum,
    /// Deprecated with July 1st sunset date. Are the various the Sideko configuration (x-fields) valid
    pub is_config_valid: bool,
    /// Is the OpenAPI spec a valid 3.x spec
    pub is_valid: bool,
    /// OpenAPI content as a string in JSON format
    pub openapi: String,
    /// Deprecated with July 1st sunset date. Validations are now returned via the linting routes
    pub validations: Vec<crate::models::Validation>,
}