From eaf140f0aa428b7f2e64e58559fce1070561b49d Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Fri, 18 Aug 2023 14:00:21 -0700 Subject: [PATCH] Add canonical URL for Augur's annotations schema Matches the new schema id (to be) in Augur, see . Resolves . --- src/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.js b/src/app.js index 4efd41a70..eb80d1e8e 100644 --- a/src/app.js +++ b/src/app.js @@ -418,6 +418,7 @@ app.route("/cli") * to programmatic clients, though we're not this fancy yet. */ const schemaRoutes = [ + ["/schemas/augur/annotations", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-annotations.json"], ["/schemas/augur/frequencies", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-frequencies.json"], ["/schemas/auspice/config/v2", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-auspice-config-v2.json"], ["/schemas/dataset/v1/meta", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-export-v1-meta.json"],