From dd6cd7b6fd4844dda989cfaa7dbf61d4f45dfd2a Mon Sep 17 00:00:00 2001 From: ggman12 Date: Thu, 12 Feb 2026 13:28:43 -0500 Subject: [PATCH] update schema with optional start_date and end_date scope --- schemas/community_submission.v1.schema.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/schemas/community_submission.v1.schema.json b/schemas/community_submission.v1.schema.json index 16527fb..ed1708d 100644 --- a/schemas/community_submission.v1.schema.json +++ b/schemas/community_submission.v1.schema.json @@ -36,6 +36,19 @@ "readOnly": true }, + "start_date": { + "type": "string", + "format": "date", + "pattern": "^\\d{4}-\\d{2}-\\d{2}$", + "description": "Optional start date for when this submission's tags are valid (ISO 8601, e.g., 2025-05-01)." + }, + "end_date": { + "type": "string", + "format": "date", + "pattern": "^\\d{4}-\\d{2}-\\d{2}$", + "description": "Optional end date for when this submission's tags are valid (ISO 8601, e.g., 2025-07-03)." + }, + "tags": { "type": "object", "description": "Additional community-defined tags as key/value pairs (values may be scalar, array, or object).",