Set readOnly/writeOnly on properties

This commit is contained in:
Graham Esau 2019-10-14 20:00:57 +01:00
parent 68ddfa310f
commit 2bc3957cb8
5 changed files with 55 additions and 24 deletions

View file

@ -126,7 +126,7 @@ impl SchemaGenerator {
pub fn root_schema_for<T: ?Sized + JsonSchema>(&mut self) -> Result<SchemaObject> {
let mut schema: SchemaObject = T::json_schema(self)?.into();
let metadata = schema.metadata.get_or_insert_with(Default::default);
let metadata = schema.metadata();
metadata.schema = Some("http://json-schema.org/draft-07/schema#".to_owned());
metadata.title = Some(T::schema_name());
metadata.definitions.extend(self.definitions().clone());
@ -135,7 +135,7 @@ impl SchemaGenerator {
pub fn into_root_schema_for<T: ?Sized + JsonSchema>(mut self) -> Result<SchemaObject> {
let mut schema: SchemaObject = T::json_schema(&mut self)?.into();
let metadata = schema.metadata.get_or_insert_with(Default::default);
let metadata = schema.metadata();
metadata.schema = Some("http://json-schema.org/draft-07/schema#".to_owned());
metadata.title = Some(T::schema_name());
metadata.definitions.extend(self.into_definitions());

View file

@ -77,6 +77,14 @@ where
}
}
macro_rules! get_or_insert_default_fn {
($name:ident, $ret:path) => {
pub fn $name(&mut self) -> &mut $ret {
self.$name.get_or_insert_with(Default::default)
}
};
}
impl SchemaObject {
pub fn new_ref(reference: String) -> Self {
SchemaObject {
@ -95,6 +103,13 @@ impl SchemaObject {
};
*self == only_ref
}
get_or_insert_default_fn!(metadata, Metadata);
get_or_insert_default_fn!(subschemas, SubschemaValidation);
get_or_insert_default_fn!(number, NumberValidation);
get_or_insert_default_fn!(string, StringValidation);
get_or_insert_default_fn!(array, ArrayValidation);
get_or_insert_default_fn!(object, ObjectValidation);
}
impl From<Schema> for SchemaObject {

View file

@ -3,16 +3,21 @@
"title": "MyStruct",
"type": "object",
"required": [
"included1",
"included2"
"included",
"writable"
],
"properties": {
"included1": {
"included": {
"type": "null"
},
"readable": {
"readOnly": true,
"type": "string"
},
"writable": {
"writeOnly": true,
"type": "number",
"format": "float"
},
"included2": {
"type": "null"
}
}
}

View file

@ -9,10 +9,10 @@ struct MyStruct {
#[serde(skip)]
skipped2: bool,
#[serde(skip_deserializing)]
skipped3: String,
readable: String,
#[serde(skip_serializing)]
included1: f32,
included2: (),
writable: f32,
included: (),
}
#[test]
@ -21,15 +21,11 @@ fn skip_struct_fields() -> TestResult {
}
#[derive(Debug, JsonSchema)]
struct TupleStruct (
#[schemars(skip)]
i32,
#[serde(skip)]
bool,
#[serde(skip_deserializing)]
String,
#[serde(skip_serializing)]
f32,
struct TupleStruct(
#[schemars(skip)] i32,
#[serde(skip)] bool,
#[serde(skip_deserializing)] String,
#[serde(skip_serializing)] f32,
(),
);
@ -55,4 +51,3 @@ pub enum MyEnum {
fn skip_enum_variants() -> TestResult {
test_default_generated_schema::<MyEnum>("skip_enum_variants")
}