santhosh-tekuri/jsonschema

Add draft-07 formats: iri

Closed this issue · 1 comments

"net/url/url.go" in standard lib implements RFC 3986
IRI requires RFC 3987

but it seems, url.go seems to work for IRI in most cases.

so you can simply register "uri" as "iri" as below:

fun init() {
    formats.Register("iri", formats.IsURI)
}