diff --git a/crates/aiken-project/src/blueprint/schema.rs b/crates/aiken-project/src/blueprint/schema.rs index 8b5b4009..027e2254 100644 --- a/crates/aiken-project/src/blueprint/schema.rs +++ b/crates/aiken-project/src/blueprint/schema.rs @@ -296,6 +296,17 @@ impl Annotated { description, annotated: data, }), + + Annotated { + title: Some(title), + description, + annotated: Schema::Data(None), + } if title == "Data" => Ok(Annotated { + title: Some(title), + description, + annotated: Data::AnyOf(vec![]), + }), + _ => Err(Error::new(ErrorContext::ExpectedData, type_info)), } }