diff --git a/CHANGELOG.md b/CHANGELOG.md index 715f94d..1f9a687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- manipulation TransitionAccuracyFromWithinLimitsToBelowSpecifiedLimits for metrics - manipulation DisplayMetricWithDifferentUnit for metrics - manipulation GetMetricDeterminationMode for metrics - manipulation PhysicallyDisconnectRemovableSubsystemAfterPhysicalConnectorProvided for combined settings diff --git a/src/t2iapi/metric/service.proto b/src/t2iapi/metric/service.proto index e870ff2..047a9e3 100644 --- a/src/t2iapi/metric/service.proto +++ b/src/t2iapi/metric/service.proto @@ -133,4 +133,15 @@ service MetricService { */ rpc DisplayMetricWithDifferentUnit (BasicHandleRequest) returns (BasicResponse); + + /* + For the metric with the provided handle perform the following transition: + - provide pm:MetricValue/@Value resp. @Samples with pm:MetricQuality/@Validity = 'Vld' then + - change its accuracy such that it does not meet the limits specified either by an applicable standard that the + SDC METRIC PROVIDER demonstrates conformity to or in the ACCOMPANYING INFORMATION of the SDC METRIC PROVIDER + and then + - provide a new pm:MetricValue/@Value resp. @Samples. + */ + rpc TransitionAccuracyFromWithinLimitsToBelowSpecifiedLimits (BasicHandleRequest) + returns (BasicResponse); }