We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 061b721 commit 9186014Copy full SHA for 9186014
src/definitions.rs
@@ -1,3 +1,8 @@
1
+/// Definition / reference management
2
+/// Our definitions system is very similar to json schema's: there's ref strings and a definitions section
3
+/// Unlike json schema we let you put definitions inline, not just in a single '#/$defs/' block or similar.
4
+/// We use DefinitionsBuilder to collect the references / definitions into a single vector
5
+/// and then get a definition from a reference using an integer id (just for performance of not using a HashMap)
6
use std::collections::hash_map::Entry;
7
8
use pyo3::prelude::*;
0 commit comments