Closed
Description
The examples currently in draft-handrews-json-schema-hyperschema-01 are technically wrong as compared to RFC-5988.
The example in Section 9.1 shows a Link header of:
Link: <https://schema.example.com/entry> rel=describedBy
Per RFC-5988, the link params should be semi-colon separated and their values should be quoted. Thus that should be:
Link: <https://schema.example.com/entry>;rel="describedBy"
Additionally, there is the link param "type" to give a hint as to the media type of the link target. Using that would make the result:
Link: <https://schema.example.com/entry>;rel="describedBy";type="application/schema-instance+json"