{ "copyright": [ "Copyright (C) 2019-2021 Swift Navigation Inc.", "Contact: https://support.swiftnav.com", "", "This source is subject to the license found in the file 'LICENSE' which must", "be distributed together with this source. All other rights reserved.", "", "THIS CODE AND INFORMATION IS PROVIDED 'AS IS' WITHOUT WARRANTY OF ANY KIND,", "EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED", "WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE." ], "$schema": "http://json-schema.org/draft-06/schema#", "$id": "#MsgObs", "title":"MsgObs", "description":"The GPS observations message reports all the raw pseudorange and carrier phase observations for the satellites being tracked by the device. Carrier phase observation here is represented as a 40-bit fixed point number with Q32.8 layout (i.e. 32-bits of whole cycles and 8-bits of fractional cycles). The observations are be interoperable with 3rd party receivers and conform with typical RTCMv3 GNSS observations.\n", "type": "object", "properties": { "header": {"$ref": "ObservationHeader.json"}, "obs": {"type": "array", "items": {"$ref": "PackedObsContent.json"}} }, "required": [ "header", "obs" ] }