""" The accuracy of the platform's own acceleration report. """ type ownAccelerationAccuracyType { """ The accuracy of the angle of climb rate - 1 standard deviation """ angleOfClimbRateAccuracy: elevationRateType "The accuracy of the heading rate - 1 standard deviation" headingRateAccuracy: azimuthRateType! "The accuracy of the speed rate - 1 standard deviation" speedRateAccuracy: speedRateType! } """ The platform's reporting of its change in velocity """ type ownAccelerationType { accuracy: ownAccelerationAccuracyType! "The rate at which the angle of climb is changing" angleOfClimbRate: elevationRateType "The rate at which the heading is changing" headingRate: azimuthRateType! """ The definition of the acceleration (change in velocity) being measured. """ measurementKind: velocityMeasurementType! "Contains the attributes inherited from the parent type." navigationReport: navigationReportType! "The rate at which the speed is changing" speedRate: speedRateType! } """ The rate of change of speed in meters per second-squared """ type speedRateType { value: double! }