update template

This commit is contained in:
ggman12
2026-02-12 13:29:45 -05:00
parent dd6cd7b6fd
commit c6d9e59d01
@@ -13,26 +13,37 @@ body:
**Rules (enforced on review/automation):** **Rules (enforced on review/automation):**
- Each object must include **at least one** of: - Each object must include **at least one** of:
- `registration_number` - `registration_number`
- `transponder_code_hex` (6 hex chars) - `transponder_code_hex` (6 uppercase hex chars, e.g., `ABC123`)
- `planequery_airframe_id` - `planequery_airframe_id`
- Your contributor name (entered below) will be applied to all objects. - Your contributor name (entered below) will be applied to all objects.
- `contributor_uuid` is derived from your GitHub account automatically. - `contributor_uuid` is derived from your GitHub account automatically.
- `creation_timestamp` is created by the system (you may omit it). - `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** **Example: single object**
```json ```json
{ {
"registration_number": "N12345", "registration_number": "N12345",
"tags": {"owner": "Taylor Swift"} "tags": {"owner": "John Doe"},
"start_date": "2025-01-01"
} }
``` ```
**Example: multiple objects (array)** **Example: multiple objects (array)**
```json ```json
[ [
{ {
"registration_number": "N12345", "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", "transponder_code_hex": "ABC123",