From ca349c5012271dcf19bd02001d8ba92c51532a27 Mon Sep 17 00:00:00 2001 From: Alex Bucknall Date: Wed, 3 Sep 2025 16:21:11 +0100 Subject: [PATCH] chore: update default schema URL for Notecard API --- blues-expert/lib/validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blues-expert/lib/validate.go b/blues-expert/lib/validate.go index 47ab387..108597a 100644 --- a/blues-expert/lib/validate.go +++ b/blues-expert/lib/validate.go @@ -31,7 +31,7 @@ var ( const cacheDir = "/tmp/notecard-schema/" // Default Notecard API schema URL -const defaultSchemaURL = "https://raw.githubusercontent.com/blues/notecard-schema/master/notecard.api.json" +const defaultSchemaURL = "https://github.com/blues/notecard-schema/releases/latest/download/notecard.api.json" // Cache expiration duration (24 hours) const cacheExpirationDuration = 24 * time.Hour