JSON schema: referencing a local child schema
问题 I want to reference a child schema in a parent json schema. Here is the child schema named child.json { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Child", "description": "Child schema", "type": "object", "properties": { "name": {"type": "string"}, "age": {"type": "integer"} }} and here is the parent schema named parent.json and all the two files are in the same folder. I want to refer to the child schema and i do like this: { "$schema": "http://json-schema.org/draft-04