From efb4cbb9537e7abdaa491486920c477f94389e79 Mon Sep 17 00:00:00 2001 From: ggman12 Date: Thu, 12 Feb 2026 13:22:43 -0500 Subject: [PATCH] update example --- .../ISSUE_TEMPLATE/community_submission.yaml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/community_submission.yaml b/.github/ISSUE_TEMPLATE/community_submission.yaml index 938843d..e4af39b 100644 --- a/.github/ISSUE_TEMPLATE/community_submission.yaml +++ b/.github/ISSUE_TEMPLATE/community_submission.yaml @@ -22,20 +22,22 @@ body: **Example: single object** ```json { - "transponder_code_hex": "a1b2c3" + "registration_number": "N12345", + "tags": {"owner": "Taylor Swift"} } ``` **Example: multiple objects (array)** ```json [ - { - "registration_number": "N123AB" - }, - { - "planequery_airframe_id": "cessna|172s|12345", - "transponder_code_hex": "0f1234" - } + { + "registration_number": "N12345", + "tags": {"internet": "starlink"} + }, + { + "transponder_code_hex": "ABC123", + "tags": {"internet": "viasat", "owner": "John Doe"} + } ] ```