/// 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>,
}