rjsf-team/react-jsonschema-form

$ref doesn't support url

Open

#1512 opened on Nov 13, 2019

View on GitHub
 (7 comments) (7 reactions) (0 assignees)TypeScript (13,175 stars) (2,136 forks)batch import
featurehelp wanted

Description

Here is a valid schema:

{
  "title": "A registration form",
  "description": "A simple form example.",
  "type": "object",
  "required": [
    "address"
  ],
  "properties": {
    "address": { 
      "$ref": "https://api.myjson.com/bins/3bkzl.json#/definitions/address"
    }
  }
}

It throws exception when dereference $ref.

Contributor guide