glideapps / glideapps/quicktype
Allow directly recursive maps and arrays in Schema
Open
IR
JSON Schema
- Dominant language
- TypeScript
- Stars
- 13.9k
- Forks
- 1.2k
- Avg merge
- 8h 53m
- Merged PRs (30d)
- 369
Description
```json
{
"$ref": "#/definitions/Foo",
"definitions": {
"Foo": {
"type": "object",
"properties": {
"bar": {
"$ref": "#/definitions/Bar"
}
},
"title": "Foo"
},
"Bar": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Bar"
}
}
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.