© 2026 Hedgehog Software, LLC
$defs
const Element = S.Struct({ ... }).annotations({ identifier: "Element" }) const Container = S.Struct({ elements: S.Array(Element) }) console.log(yaml.stringify(JSONSchema.make(Container)))
- type: object required: - elements properties: elements: type: array items: $ref: #/defs/Element $defs: Element: ...