From 4784a02b3c8eb335c9185aad3e24ecaf8d569a36 Mon Sep 17 00:00:00 2001 From: Vidushi Sharma <103223246+Vidushi-GitHub@users.noreply.github.com> Date: Fri, 7 Jun 2024 12:35:08 -0400 Subject: [PATCH] pointing schema: rename (ra, dec) (#146) --- gcn/notices/core/Pointing.example.json | 4 ++-- gcn/notices/core/Pointing.schema.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gcn/notices/core/Pointing.example.json b/gcn/notices/core/Pointing.example.json index 34628db0..fcdca98b 100644 --- a/gcn/notices/core/Pointing.example.json +++ b/gcn/notices/core/Pointing.example.json @@ -1,7 +1,7 @@ { "$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/core/Pointing.schema.json", - "ra": 120.5, - "dec": 30.2, + "ra_pointing": 120.5, + "dec_pointing": 30.2, "roll": -12.8, "position_angle": 23.7, "attitude_quarternion": [0.2, 0.3, 0.4, 0.5], diff --git a/gcn/notices/core/Pointing.schema.json b/gcn/notices/core/Pointing.schema.json index 09a47504..a020c5d9 100644 --- a/gcn/notices/core/Pointing.schema.json +++ b/gcn/notices/core/Pointing.schema.json @@ -6,13 +6,13 @@ "$comment": "Providers should $ref this schema directly but Attitudes.schema.json instead.", "type": "object", "properties": { - "ra": { + "ra_pointing": { "type": "number", - "description": "RA pointing of the instrument Z axis" + "description": "RA pointing of the instrument Z axis. ICRS declination [deg], utilizes the J2000 epoch and an equatorial coordinate system." }, - "dec": { + "dec_pointing": { "type": "number", - "description": "Dec pointing of the instrument Z axis" + "description": "Dec pointing of the instrument Z axis. ICRS declination [deg], utilizes the J2000 epoch and an equatorial coordinate system." }, "roll": { "type": "number",