-
Notifications
You must be signed in to change notification settings - Fork 398
Closed
Description
Hi,
First of all, thanks a lot for great tool! I'm trying to use it for validating schemas I'm going to write.. however I've got a few problems, here is first one:
The following simple hyper-schema gets warning:
[ {
"level" : "warning",
"schema" : {
"loadingURI" : "#",
"pointer" : ""
},
"domain" : "syntax",
"message" : "unknown keyword(s) found; ignored",
"ignored" : [ "links" ]
} ]
Schema is:
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"type": "object",
"links": [
{"href": "http://example.org/example", "rel": "describedBy"}
]
}
May be misunderstood hyper-schema? Or this is just not supported? Or is it bug?
Thank you.