From d65147ca4c8b69d2715bf21474a997d9d5de0e5d Mon Sep 17 00:00:00 2001 From: Henry Andrews Date: Fri, 3 Mar 2017 11:41:49 -0800 Subject: [PATCH] Fix hyper-schema meta-schema self link. "id" became "$id", and we handle "$" through percent-encoding URI Templates reserve "$", but do not specify how percent-encoding is to be used, except that implementations should be consistent about it. We document that we always percent-decode variables before resolving them. --- hyper-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyper-schema.json b/hyper-schema.json index f318e987..bf69cdd5 100644 --- a/hyper-schema.json +++ b/hyper-schema.json @@ -129,7 +129,7 @@ "links": [ { "rel": "self", - "href": "{+id}" + "href": "{+%24id}" } ] }