Files
zopu-code/repos/effect/packages/tools/bundle/fixtures/schema-fromJsonSchemaDocument.ts

17 lines
328 B
TypeScript

import * as SchemaRepresentation from "effect/SchemaRepresentation"
const doc = SchemaRepresentation.fromJsonSchemaDocument({
"dialect": "draft-2020-12",
"schema": {
"type": "object",
"properties": {
"a": {
"type": "string"
}
}
},
"definitions": {}
})
console.dir(doc, { depth: null })