From c6d9e59d01d4191b93e2f682374f0f679a13c58f Mon Sep 17 00:00:00 2001 From: ggman12 Date: Thu, 12 Feb 2026 13:29:45 -0500 Subject: [PATCH] update template --- .../ISSUE_TEMPLATE/community_submission.yaml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/community_submission.yaml b/.github/ISSUE_TEMPLATE/community_submission.yaml index e4af39b..10ddca6 100644 --- a/.github/ISSUE_TEMPLATE/community_submission.yaml +++ b/.github/ISSUE_TEMPLATE/community_submission.yaml @@ -13,26 +13,37 @@ body: **Rules (enforced on review/automation):** - Each object must include **at least one** of: - `registration_number` - - `transponder_code_hex` (6 hex chars) + - `transponder_code_hex` (6 uppercase hex chars, e.g., `ABC123`) - `planequery_airframe_id` - Your contributor name (entered below) will be applied to all objects. - `contributor_uuid` is derived from your GitHub account automatically. - `creation_timestamp` is created by the system (you may omit it). + **Optional date scoping:** + - `start_date` - When the tags become valid (ISO 8601: `YYYY-MM-DD`) + - `end_date` - When the tags stop being valid (ISO 8601: `YYYY-MM-DD`) + **Example: single object** ```json { "registration_number": "N12345", - "tags": {"owner": "Taylor Swift"} + "tags": {"owner": "John Doe"}, + "start_date": "2025-01-01" } ``` - **Example: multiple objects (array)** ```json [ { "registration_number": "N12345", - "tags": {"internet": "starlink"} + "tags": {"internet": "starlink"}, + "start_date": "2025-05-01" + }, + { + "registration_number": "N12345", + "tags": {"owner": "John Doe"}, + "start_date": "2025-01-01", + "end_date": "2025-07-20" }, { "transponder_code_hex": "ABC123",