From eec073f1d0eb0436fd26691ed5969524272b5512 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Sun, 21 May 2023 15:29:32 -0400 Subject: [PATCH] Better start namespacing now before I regret it. --- post.schema.json => hugo/post.schema.json | 4 ++-- note.schema.json => obsidian/note.schema.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename post.schema.json => hugo/post.schema.json (87%) rename note.schema.json => obsidian/note.schema.json (92%) diff --git a/post.schema.json b/hugo/post.schema.json similarity index 87% rename from post.schema.json rename to hugo/post.schema.json index b608e5a..2b3dc96 100644 --- a/post.schema.json +++ b/hugo/post.schema.json @@ -1,13 +1,13 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://schemas.ndumas.com/post.schema.json", + "$id": "https://schemas.ndumas.com/hugo/post.schema.json", "title":"post", "description":"Hugo blog posts", "type":"object", "properties": { "note": { "description":"base schema for notes", - "$ref":"https://schemas.ndumas.com/note.schema.json" + "$ref":"https://schemas.ndumas.com/obsidian/note.schema.json" }, "draft": { "description": "publishing status", diff --git a/note.schema.json b/obsidian/note.schema.json similarity index 92% rename from note.schema.json rename to obsidian/note.schema.json index 475d9e2..e5af958 100644 --- a/note.schema.json +++ b/obsidian/note.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://schemas.ndumas.com/note.schema.json", + "$id": "https://schemas.ndumas.com/obsidian/note.schema.json", "title":"note", "description":"properties all notes must have", "type":"object",