polywrap-jsonref 0.1.0

Deref your JSONSchema here!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "title": "title from file",
  "properties": {
    "prop1": { "title": "sub property title in base.json" },
    "prop3": {
      "title": "22title",
      "properties": {
        "prop1": { "title": "22sub property title in base.json" },
        "prop3": { "$ref": "#/definitions/def2" }
      }
    }
  },
  "definitions": {
    "def1": { "title": "def1" },
    "def2": { "title": "def2" }
  }
}