diff --git a/build/MTConnect.NET-SysML-Import/CSharp/DataItemType.cs b/build/MTConnect.NET-SysML-Import/CSharp/DataItemType.cs index 22e508fa..7c471068 100644 --- a/build/MTConnect.NET-SysML-Import/CSharp/DataItemType.cs +++ b/build/MTConnect.NET-SysML-Import/CSharp/DataItemType.cs @@ -13,6 +13,8 @@ public class DataItemType : MTConnectDataItemType, ITemplateModel { public string Namespace => NamespaceHelper.GetNamespace(Id); + public string DefaultName => Type.ToCamelCase(); + public string UnitsEnum => Units != null ? $"Devices.{Units}" : null; public string MaximumVersionEnum => MTConnectVersion.GetVersionEnum(MaximumVersion); diff --git a/src/MTConnect.NET-Common/Agents/MTConnectAgentBroker.cs b/src/MTConnect.NET-Common/Agents/MTConnectAgentBroker.cs index c0c21acb..78c0407d 100644 --- a/src/MTConnect.NET-Common/Agents/MTConnectAgentBroker.cs +++ b/src/MTConnect.NET-Common/Agents/MTConnectAgentBroker.cs @@ -1079,6 +1079,19 @@ private IDeviceStreamOutput CreateDeviceStream(IDevice device, ref IObservationB var components = device.GetComponents(); var componentStreams = new List(); + // Add ComponentStream for Device + var deviceComponentStream = new ComponentStreamOutput(); + deviceComponentStream.ComponentId = device.Id; + deviceComponentStream.ComponentType = device.Type; + deviceComponentStream.Component = device; + deviceComponentStream.Name = device.Name; + deviceComponentStream.Uuid = device.Uuid; + deviceComponentStream.Observations = GetObservations(device.Uuid, ref dataItemResults, device.DataItems, mtconnectVersion); + if (deviceComponentStream.Observations != null && deviceComponentStream.Observations.Length > 0) + { + componentStreams.Add(deviceComponentStream); + } + if (!components.IsNullOrEmpty()) { foreach (var component in components) @@ -1113,18 +1126,18 @@ private IDeviceStreamOutput CreateDeviceStream(IDevice device, ref IObservationB } } - // Add ComponentStream for Device - var deviceComponentStream = new ComponentStreamOutput(); - deviceComponentStream.ComponentId = device.Id; - deviceComponentStream.ComponentType = device.Type; - deviceComponentStream.Component = device; - deviceComponentStream.Name = device.Name; - deviceComponentStream.Uuid = device.Uuid; - deviceComponentStream.Observations = GetObservations(device.Uuid, ref dataItemResults, device.DataItems, mtconnectVersion); - if (deviceComponentStream.Observations != null && deviceComponentStream.Observations.Length > 0) - { - componentStreams.Add(deviceComponentStream); - } + //// Add ComponentStream for Device + //var deviceComponentStream = new ComponentStreamOutput(); + //deviceComponentStream.ComponentId = device.Id; + //deviceComponentStream.ComponentType = device.Type; + //deviceComponentStream.Component = device; + //deviceComponentStream.Name = device.Name; + //deviceComponentStream.Uuid = device.Uuid; + //deviceComponentStream.Observations = GetObservations(device.Uuid, ref dataItemResults, device.DataItems, mtconnectVersion); + //if (deviceComponentStream.Observations != null && deviceComponentStream.Observations.Length > 0) + //{ + // componentStreams.Add(deviceComponentStream); + //} if (componentStreams.Count > 0) { diff --git a/src/MTConnect.NET-Common/Devices/DataItem.cs b/src/MTConnect.NET-Common/Devices/DataItem.cs index ba0b97a3..b753cad3 100644 --- a/src/MTConnect.NET-Common/Devices/DataItem.cs +++ b/src/MTConnect.NET-Common/Devices/DataItem.cs @@ -370,14 +370,19 @@ public static string CreateDataItemId(string parentId, string type, string subTy public static string CreateId(string parentId, string name, string suffix) { - if (!string.IsNullOrEmpty(suffix)) + if (!string.IsNullOrEmpty(name)) { - return $"{parentId}_{name}_{suffix}"; - } - else - { - return $"{parentId}_{name}"; + if (!string.IsNullOrEmpty(suffix)) + { + return $"{parentId}_{name}_{suffix}"; + } + else + { + return $"{parentId}_{name}"; + } } + + return null; } /// diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AccelerationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AccelerationDataItem.g.cs index e2958afd..ed1aabbd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AccelerationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AccelerationDataItem.g.cs @@ -10,7 +10,7 @@ public class AccelerationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ACCELERATION"; - public const string NameId = ""; + public const string NameId = "acceleration"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_SECOND_SQUARED; public new const string DescriptionText = "Positive rate of change of velocity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AccumulatedTimeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AccumulatedTimeDataItem.g.cs index 277fe1b4..c2906d05 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AccumulatedTimeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AccumulatedTimeDataItem.g.cs @@ -10,7 +10,7 @@ public class AccumulatedTimeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ACCUMULATED_TIME"; - public const string NameId = ""; + public const string NameId = "accumulatedTime"; public const string DefaultUnits = Devices.Units.SECOND; public new const string DescriptionText = "Accumulated time for an activity or event."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ActivationCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ActivationCountDataItem.g.cs index 11f85473..5336e5b5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ActivationCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ActivationCountDataItem.g.cs @@ -10,7 +10,7 @@ public class ActivationCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ACTIVATION_COUNT"; - public const string NameId = ""; + public const string NameId = "activationCount"; public new const string DescriptionText = "Accumulation of the number of times a function has attempted to, or is planned to attempt to, activate or be performed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ActiveAxesDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ActiveAxesDataItem.g.cs index 39e34ca0..716c6208 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ActiveAxesDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ActiveAxesDataItem.g.cs @@ -10,7 +10,7 @@ public class ActiveAxesDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ACTIVE_AXES"; - public const string NameId = ""; + public const string NameId = "activeAxes"; public new const string DescriptionText = "Set of axes currently associated with a Path or Controller."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ActuatorDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ActuatorDataItem.g.cs index 41d35f86..c0505b52 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ActuatorDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ActuatorDataItem.g.cs @@ -10,7 +10,7 @@ public class ActuatorDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.CONDITION; public const string TypeId = "ACTUATOR"; - public const string NameId = ""; + public const string NameId = "actuator"; public new const string DescriptionText = "Indication of a fault associated with an actuator."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ActuatorStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ActuatorStateDataItem.g.cs index be0b5a18..9b976ea9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ActuatorStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ActuatorStateDataItem.g.cs @@ -10,7 +10,7 @@ public class ActuatorStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ACTUATOR_STATE"; - public const string NameId = ""; + public const string NameId = "actuatorState"; public new const string DescriptionText = "Operational state of an apparatus for moving or controlling a mechanism or system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AdapterSoftwareVersionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AdapterSoftwareVersionDataItem.g.cs index 5a21dadf..d125061d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AdapterSoftwareVersionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AdapterSoftwareVersionDataItem.g.cs @@ -10,7 +10,7 @@ public class AdapterSoftwareVersionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ADAPTER_SOFTWARE_VERSION"; - public const string NameId = ""; + public const string NameId = "adapterSoftwareVersion"; public new const string DescriptionText = "Originator’s software version of the adapter."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AdapterUriDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AdapterUriDataItem.g.cs index b9285e91..fe60ae75 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AdapterUriDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AdapterUriDataItem.g.cs @@ -10,7 +10,7 @@ public class AdapterUriDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ADAPTER_URI"; - public const string NameId = ""; + public const string NameId = "adapterUri"; public new const string DescriptionText = "URI of the adapter."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AlarmDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AlarmDataItem.g.cs index a30ba442..54f3e560 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AlarmDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AlarmDataItem.g.cs @@ -10,7 +10,7 @@ public class AlarmDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ALARM"; - public const string NameId = ""; + public const string NameId = "alarm"; public new const string DescriptionText = "**DEPRECATED:** Replaced with `CONDITION` category data items in Version 1.1.0."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AlarmLimitDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AlarmLimitDataItem.g.cs index aa9f1d5d..93fd7be9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AlarmLimitDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AlarmLimitDataItem.g.cs @@ -10,7 +10,7 @@ public class AlarmLimitDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ALARM_LIMIT"; - public const string NameId = ""; + public const string NameId = "alarmLimit"; public new const string DescriptionText = "Set of limits used to trigger warning or alarm indicators."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AmperageACDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AmperageACDataItem.g.cs index 4a6121c5..83d779e3 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AmperageACDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AmperageACDataItem.g.cs @@ -10,7 +10,7 @@ public class AmperageACDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "AMPERAGE_AC"; - public const string NameId = ""; + public const string NameId = "amperageAc"; public const string DefaultUnits = Devices.Units.AMPERE; public new const string DescriptionText = "Electrical current that reverses direction at regular short intervals."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AmperageDCDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AmperageDCDataItem.g.cs index 4bc3ee4a..829cf281 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AmperageDCDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AmperageDCDataItem.g.cs @@ -10,7 +10,7 @@ public class AmperageDCDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "AMPERAGE_DC"; - public const string NameId = ""; + public const string NameId = "amperageDc"; public const string DefaultUnits = Devices.Units.AMPERE; public new const string DescriptionText = "Electric current flowing in one direction only."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AmperageDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AmperageDataItem.g.cs index 55268940..b681193c 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AmperageDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AmperageDataItem.g.cs @@ -10,7 +10,7 @@ public class AmperageDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "AMPERAGE"; - public const string NameId = ""; + public const string NameId = "amperage"; public new const string DescriptionText = "Strength of electrical current.**DEPRECATED** in *Version 1.6*. Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AngleDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AngleDataItem.g.cs index d22409e3..80bcc1bb 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AngleDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AngleDataItem.g.cs @@ -10,7 +10,7 @@ public class AngleDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ANGLE"; - public const string NameId = ""; + public const string NameId = "angle"; public const string DefaultUnits = Devices.Units.DEGREE; public new const string DescriptionText = "Angular position."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AngularAccelerationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AngularAccelerationDataItem.g.cs index 8e8aee6e..bfe156e0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AngularAccelerationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AngularAccelerationDataItem.g.cs @@ -10,7 +10,7 @@ public class AngularAccelerationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ANGULAR_ACCELERATION"; - public const string NameId = ""; + public const string NameId = "angularAcceleration"; public const string DefaultUnits = Devices.Units.DEGREE_PER_SECOND_SQUARED; public new const string DescriptionText = "Positive rate of change of angular velocity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AngularDecelerationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AngularDecelerationDataItem.g.cs index aa561699..1fedb3b4 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AngularDecelerationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AngularDecelerationDataItem.g.cs @@ -10,7 +10,7 @@ public class AngularDecelerationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ANGULAR_DECELERATION"; - public const string NameId = ""; + public const string NameId = "angularDeceleration"; public const string DefaultUnits = Devices.Units.DEGREE_PER_SECOND_SQUARED; public new const string DescriptionText = "Negative rate of change of angular velocity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AngularVelocityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AngularVelocityDataItem.g.cs index 000d01a1..dcbea51e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AngularVelocityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AngularVelocityDataItem.g.cs @@ -10,7 +10,7 @@ public class AngularVelocityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ANGULAR_VELOCITY"; - public const string NameId = ""; + public const string NameId = "angularVelocity"; public const string DefaultUnits = Devices.Units.DEGREE_PER_SECOND; public new const string DescriptionText = "Rate of change of angular position."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ApplicationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ApplicationDataItem.g.cs index 72f7dec6..21cf6acf 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ApplicationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ApplicationDataItem.g.cs @@ -10,7 +10,7 @@ public class ApplicationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "APPLICATION"; - public const string NameId = ""; + public const string NameId = "application"; public new const string DescriptionText = "Application on a Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AssetChangedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AssetChangedDataItem.g.cs index 7bd1ae5c..a4531070 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AssetChangedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AssetChangedDataItem.g.cs @@ -10,7 +10,7 @@ public class AssetChangedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ASSET_CHANGED"; - public const string NameId = ""; + public const string NameId = "assetChanged"; public new const string DescriptionText = "AssetId of the Asset that has been added or changed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AssetCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AssetCountDataItem.g.cs index e705e1d5..38914dbd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AssetCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AssetCountDataItem.g.cs @@ -10,7 +10,7 @@ public class AssetCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ASSET_COUNT"; - public const string NameId = ""; + public const string NameId = "assetCount"; public new const string DescriptionText = "Data set of the number of Asset of a given type for a Device."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AssetRemovedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AssetRemovedDataItem.g.cs index cce93dff..5e231fe7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AssetRemovedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AssetRemovedDataItem.g.cs @@ -10,7 +10,7 @@ public class AssetRemovedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ASSET_REMOVED"; - public const string NameId = ""; + public const string NameId = "assetRemoved"; public new const string DescriptionText = "AssetId of the Asset that has been removed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AssetUpdateRateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AssetUpdateRateDataItem.g.cs index 895549cf..359a6e8b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AssetUpdateRateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AssetUpdateRateDataItem.g.cs @@ -10,7 +10,7 @@ public class AssetUpdateRateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ASSET_UPDATE_RATE"; - public const string NameId = ""; + public const string NameId = "assetUpdateRate"; public const string DefaultUnits = Devices.Units.COUNT_PER_SECOND; public new const string DescriptionText = "Average rate of change of values for assets in the MTConnect streams. The average is computed over a rolling window defined by the implementation."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AvailabilityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AvailabilityDataItem.g.cs index 4d7e00a4..f20fd6cf 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AvailabilityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AvailabilityDataItem.g.cs @@ -10,7 +10,7 @@ public class AvailabilityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "AVAILABILITY"; - public const string NameId = ""; + public const string NameId = "availability"; public new const string DescriptionText = "Agent's ability to communicate with the data source."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AxisCouplingDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AxisCouplingDataItem.g.cs index 886b6572..c0cd4103 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AxisCouplingDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AxisCouplingDataItem.g.cs @@ -10,7 +10,7 @@ public class AxisCouplingDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "AXIS_COUPLING"; - public const string NameId = ""; + public const string NameId = "axisCoupling"; public new const string DescriptionText = "Describes the way the axes will be associated to each other. This is used in conjunction with `COUPLED_AXES` to indicate the way they are interacting."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateDataItem.g.cs index 43acf7ee..dc49fdc7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateDataItem.g.cs @@ -10,7 +10,7 @@ public class AxisFeedrateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "AXIS_FEEDRATE"; - public const string NameId = ""; + public const string NameId = "axisFeedrate"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_SECOND; public new const string DescriptionText = "Feedrate of a linear axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateOverrideDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateOverrideDataItem.g.cs index 79f07ee5..68c1340c 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateOverrideDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AxisFeedrateOverrideDataItem.g.cs @@ -10,7 +10,7 @@ public class AxisFeedrateOverrideDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "AXIS_FEEDRATE_OVERRIDE"; - public const string NameId = ""; + public const string NameId = "axisFeedrateOverride"; public new const string DescriptionText = "Value of a signal or calculation issued to adjust the feedrate of an individual linear type axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AxisInterlockDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AxisInterlockDataItem.g.cs index a40ab50b..018731a3 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AxisInterlockDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AxisInterlockDataItem.g.cs @@ -10,7 +10,7 @@ public class AxisInterlockDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "AXIS_INTERLOCK"; - public const string NameId = ""; + public const string NameId = "axisInterlock"; public new const string DescriptionText = "State of the axis lockout function when power has been removed and the axis is allowed to move freely."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/AxisStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/AxisStateDataItem.g.cs index 8cdbbc97..5be5c2e2 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/AxisStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/AxisStateDataItem.g.cs @@ -10,7 +10,7 @@ public class AxisStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "AXIS_STATE"; - public const string NameId = ""; + public const string NameId = "axisState"; public new const string DescriptionText = "State of a Linear or Rotary component representing an axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/BatteryCapacityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/BatteryCapacityDataItem.g.cs index 785f3da1..c34fc183 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/BatteryCapacityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/BatteryCapacityDataItem.g.cs @@ -10,7 +10,7 @@ public class BatteryCapacityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "BATTERY_CAPACITY"; - public const string NameId = ""; + public const string NameId = "batteryCapacity"; public const string DefaultUnits = Devices.Units.COULOMB; public new const string DescriptionText = "Maximum rated charge a battery is capable of maintaining based on the battery discharging at a specified current over a specified time period."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/BatteryChargeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/BatteryChargeDataItem.g.cs index 25f826c8..b7d670bf 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/BatteryChargeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/BatteryChargeDataItem.g.cs @@ -10,7 +10,7 @@ public class BatteryChargeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "BATTERY_CHARGE"; - public const string NameId = ""; + public const string NameId = "batteryCharge"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Value of the battery's present capacity expressed as a percentage of the battery's maximum rated capacity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/BatteryStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/BatteryStateDataItem.g.cs index 13d44144..1cdec5e0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/BatteryStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/BatteryStateDataItem.g.cs @@ -10,7 +10,7 @@ public class BatteryStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "BATTERY_STATE"; - public const string NameId = ""; + public const string NameId = "batteryState"; public new const string DescriptionText = "Present status of the battery."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/BlockCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/BlockCountDataItem.g.cs index eda653c8..0cf4f2fe 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/BlockCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/BlockCountDataItem.g.cs @@ -10,7 +10,7 @@ public class BlockCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "BLOCK_COUNT"; - public const string NameId = ""; + public const string NameId = "blockCount"; public new const string DescriptionText = "Total count of the number of blocks of program code that have been executed since execution started."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/BlockDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/BlockDataItem.g.cs index 46e77d7e..c46f337e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/BlockDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/BlockDataItem.g.cs @@ -10,7 +10,7 @@ public class BlockDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "BLOCK"; - public const string NameId = ""; + public const string NameId = "block"; public new const string DescriptionText = "Line of code or command being executed by a Controller entity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CapacityFluidDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CapacityFluidDataItem.g.cs index f66d0f0f..5ddb0b3e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CapacityFluidDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CapacityFluidDataItem.g.cs @@ -10,7 +10,7 @@ public class CapacityFluidDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "CAPACITY_FLUID"; - public const string NameId = ""; + public const string NameId = "capacityFluid"; public const string DefaultUnits = Devices.Units.MILLILITER; public new const string DescriptionText = "Fluid capacity of an object or container."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CapacitySpatialDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CapacitySpatialDataItem.g.cs index c8c3d7f0..59106fb9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CapacitySpatialDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CapacitySpatialDataItem.g.cs @@ -10,7 +10,7 @@ public class CapacitySpatialDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "CAPACITY_SPATIAL"; - public const string NameId = ""; + public const string NameId = "capacitySpatial"; public const string DefaultUnits = Devices.Units.CUBIC_MILLIMETER; public new const string DescriptionText = "Geometric capacity of an object or container."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicPersistentIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicPersistentIdDataItem.g.cs index 64168ec7..f8fd151e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicPersistentIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicPersistentIdDataItem.g.cs @@ -10,7 +10,7 @@ public class CharacteristicPersistentIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CHARACTERISTIC_PERSISTENT_ID"; - public const string NameId = ""; + public const string NameId = "characteristicPersistentId"; public new const string DescriptionText = "UUID of the characteristic."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicStatusDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicStatusDataItem.g.cs index adbcaf34..53c4a747 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicStatusDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CharacteristicStatusDataItem.g.cs @@ -10,7 +10,7 @@ public class CharacteristicStatusDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CHARACTERISTIC_STATUS"; - public const string NameId = ""; + public const string NameId = "characteristicStatus"; public new const string DescriptionText = "Pass/fail result of the measurement."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ChargeRateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ChargeRateDataItem.g.cs index 8351b1a7..9a57fbf2 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ChargeRateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ChargeRateDataItem.g.cs @@ -10,7 +10,7 @@ public class ChargeRateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "CHARGE_RATE"; - public const string NameId = ""; + public const string NameId = "chargeRate"; public const string DefaultUnits = Devices.Units.AMPERE; public new const string DescriptionText = "Value of the current being supplied to the Component for the purpose of charging."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ChuckInterlockDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ChuckInterlockDataItem.g.cs index cfdf80ac..16093397 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ChuckInterlockDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ChuckInterlockDataItem.g.cs @@ -10,7 +10,7 @@ public class ChuckInterlockDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CHUCK_INTERLOCK"; - public const string NameId = ""; + public const string NameId = "chuckInterlock"; public new const string DescriptionText = "State of an interlock function or control logic state intended to prevent the associated Chuck component from being operated."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ChuckStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ChuckStateDataItem.g.cs index 96e980e0..5cb68804 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ChuckStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ChuckStateDataItem.g.cs @@ -10,7 +10,7 @@ public class ChuckStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CHUCK_STATE"; - public const string NameId = ""; + public const string NameId = "chuckState"; public new const string DescriptionText = "Operating state of a mechanism that holds a part or stock material during a manufacturing process. It may also represent a mechanism that holds any other mechanism in place within a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ClockTimeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ClockTimeDataItem.g.cs index 53381280..1abaf595 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ClockTimeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ClockTimeDataItem.g.cs @@ -10,7 +10,7 @@ public class ClockTimeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CLOCK_TIME"; - public const string NameId = ""; + public const string NameId = "clockTime"; public new const string DescriptionText = "Time provided by a timing device at a specific point in time."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CodeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CodeDataItem.g.cs index c955a32f..36001547 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CodeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CodeDataItem.g.cs @@ -10,7 +10,7 @@ public class CodeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CODE"; - public const string NameId = ""; + public const string NameId = "code"; public new const string DescriptionText = "Programmatic code being executed.**DEPRECATED** in *Version 1.1*."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CommunicationsDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CommunicationsDataItem.g.cs index 57f3f0f8..88099084 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CommunicationsDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CommunicationsDataItem.g.cs @@ -10,7 +10,7 @@ public class CommunicationsDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.CONDITION; public const string TypeId = "COMMUNICATIONS"; - public const string NameId = ""; + public const string NameId = "communications"; public new const string DescriptionText = "Indication that the piece of equipment has experienced a communications failure."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ComponentDataDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ComponentDataDataItem.g.cs index 76f5165e..8ff2ff26 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ComponentDataDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ComponentDataDataItem.g.cs @@ -10,7 +10,7 @@ public class ComponentDataDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "COMPONENT_DATA"; - public const string NameId = ""; + public const string NameId = "componentData"; public new const string DescriptionText = "Event that represents a Component where the EntryDefinition identifies the Component and the CellDefinitions define the Component's observed DataItems."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CompositionStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CompositionStateDataItem.g.cs index 52194bd5..5d9746b6 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CompositionStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CompositionStateDataItem.g.cs @@ -10,7 +10,7 @@ public class CompositionStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "COMPOSITION_STATE"; - public const string NameId = ""; + public const string NameId = "compositionState"; public new const string DescriptionText = "Operating state of a mechanism represented by a Composition entity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ConcentrationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ConcentrationDataItem.g.cs index 8e17ecd7..de17cce1 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ConcentrationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ConcentrationDataItem.g.cs @@ -10,7 +10,7 @@ public class ConcentrationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "CONCENTRATION"; - public const string NameId = ""; + public const string NameId = "concentration"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Percentage of one component within a mixture of components."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ConductivityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ConductivityDataItem.g.cs index 1e3b6732..5c2703ed 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ConductivityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ConductivityDataItem.g.cs @@ -10,7 +10,7 @@ public class ConductivityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "CONDUCTIVITY"; - public const string NameId = ""; + public const string NameId = "conductivity"; public const string DefaultUnits = Devices.Units.SIEMENS_PER_METER; public new const string DescriptionText = "Ability of a material to conduct electricity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ConnectionStatusDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ConnectionStatusDataItem.g.cs index 23fe18d0..7b29aed8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ConnectionStatusDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ConnectionStatusDataItem.g.cs @@ -10,7 +10,7 @@ public class ConnectionStatusDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CONNECTION_STATUS"; - public const string NameId = ""; + public const string NameId = "connectionStatus"; public new const string DescriptionText = "Status of the connection between an adapter and an agent."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ControlLimitDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ControlLimitDataItem.g.cs index 769ad4c5..e3cf2ae9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ControlLimitDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ControlLimitDataItem.g.cs @@ -10,7 +10,7 @@ public class ControlLimitDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CONTROL_LIMIT"; - public const string NameId = ""; + public const string NameId = "controlLimit"; public new const string DescriptionText = "Set of limits used to indicate whether a process variable is stable and in control."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeDataItem.g.cs index 3d873e77..e3d903d4 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeDataItem.g.cs @@ -10,7 +10,7 @@ public class ControllerModeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CONTROLLER_MODE"; - public const string NameId = ""; + public const string NameId = "controllerMode"; public new const string DescriptionText = "Current mode of the Controller component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeOverrideDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeOverrideDataItem.g.cs index 4cf63d5d..e5b332a7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeOverrideDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ControllerModeOverrideDataItem.g.cs @@ -10,7 +10,7 @@ public class ControllerModeOverrideDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CONTROLLER_MODE_OVERRIDE"; - public const string NameId = ""; + public const string NameId = "controllerModeOverride"; public new const string DescriptionText = "Setting or operator selection that changes the behavior of a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CoupledAxesDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CoupledAxesDataItem.g.cs index 57fbee93..9c8762b3 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CoupledAxesDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CoupledAxesDataItem.g.cs @@ -10,7 +10,7 @@ public class CoupledAxesDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "COUPLED_AXES"; - public const string NameId = ""; + public const string NameId = "coupledAxes"; public new const string DescriptionText = "Set of associated axes."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CuttingSpeedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CuttingSpeedDataItem.g.cs index c1967137..6bf315ad 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CuttingSpeedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CuttingSpeedDataItem.g.cs @@ -10,7 +10,7 @@ public class CuttingSpeedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "CUTTING_SPEED"; - public const string NameId = ""; + public const string NameId = "cuttingSpeed"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_SECOND; public new const string DescriptionText = "Speed difference (relative velocity) between the cutting mechanism and the surface of the workpiece it is operating on."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/CycleCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/CycleCountDataItem.g.cs index f7eb7b5a..c91cb3bd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/CycleCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/CycleCountDataItem.g.cs @@ -10,7 +10,7 @@ public class CycleCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CYCLE_COUNT"; - public const string NameId = ""; + public const string NameId = "cycleCount"; public new const string DescriptionText = "Accumulation of the number of times a cyclic function has attempted to, or is planned to attempt to execute."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DataRangeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DataRangeDataItem.g.cs index 656f3e0f..d25fc8d0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DataRangeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DataRangeDataItem.g.cs @@ -10,7 +10,7 @@ public class DataRangeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.CONDITION; public const string TypeId = "DATA_RANGE"; - public const string NameId = ""; + public const string NameId = "dataRange"; public new const string DescriptionText = "Indication that the value of the data associated with a measured value or a calculation is outside of an expected range."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DateCodeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DateCodeDataItem.g.cs index 5f5502fc..33f170ba 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DateCodeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DateCodeDataItem.g.cs @@ -10,7 +10,7 @@ public class DateCodeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DATE_CODE"; - public const string NameId = ""; + public const string NameId = "dateCode"; public new const string DescriptionText = "Time and date code associated with a material or other physical item."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DeactivationCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DeactivationCountDataItem.g.cs index 9b066eb7..c1868a6d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DeactivationCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DeactivationCountDataItem.g.cs @@ -10,7 +10,7 @@ public class DeactivationCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DEACTIVATION_COUNT"; - public const string NameId = ""; + public const string NameId = "deactivationCount"; public new const string DescriptionText = "Accumulation of the number of times a function has attempted to, or is planned to attempt to, deactivate or cease."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DecelerationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DecelerationDataItem.g.cs index e2044143..e7706b64 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DecelerationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DecelerationDataItem.g.cs @@ -10,7 +10,7 @@ public class DecelerationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DECELERATION"; - public const string NameId = ""; + public const string NameId = "deceleration"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_SECOND_SQUARED; public new const string DescriptionText = "Negative rate of change of velocity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DensityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DensityDataItem.g.cs index 5fe8f156..d697f3fb 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DensityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DensityDataItem.g.cs @@ -10,7 +10,7 @@ public class DensityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DENSITY"; - public const string NameId = ""; + public const string NameId = "density"; public const string DefaultUnits = Devices.Units.MILLIGRAM_PER_CUBIC_MILLIMETER; public new const string DescriptionText = "Volumetric mass of a material per unit volume of that material."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DepositionAccelerationVolumetricDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DepositionAccelerationVolumetricDataItem.g.cs index c5c6d749..b438bde0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DepositionAccelerationVolumetricDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DepositionAccelerationVolumetricDataItem.g.cs @@ -10,7 +10,7 @@ public class DepositionAccelerationVolumetricDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DEPOSITION_ACCELERATION_VOLUMETRIC"; - public const string NameId = ""; + public const string NameId = "depositionAccelerationVolumetric"; public const string DefaultUnits = Devices.Units.CUBIC_MILLIMETER_PER_SECOND_SQUARED; public new const string DescriptionText = "Rate of change in spatial volume of material deposited in an additive manufacturing process."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DepositionDensityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DepositionDensityDataItem.g.cs index 7aaea90b..9993956b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DepositionDensityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DepositionDensityDataItem.g.cs @@ -10,7 +10,7 @@ public class DepositionDensityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DEPOSITION_DENSITY"; - public const string NameId = ""; + public const string NameId = "depositionDensity"; public const string DefaultUnits = Devices.Units.MILLIGRAM_PER_CUBIC_MILLIMETER; public new const string DescriptionText = "Density of the material deposited in an additive manufacturing process per unit of volume."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DepositionMassDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DepositionMassDataItem.g.cs index 68874750..7a2cac1d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DepositionMassDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DepositionMassDataItem.g.cs @@ -10,7 +10,7 @@ public class DepositionMassDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DEPOSITION_MASS"; - public const string NameId = ""; + public const string NameId = "depositionMass"; public const string DefaultUnits = Devices.Units.MILLIGRAM; public new const string DescriptionText = "Mass of the material deposited in an additive manufacturing process."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DepositionRateVolumetricDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DepositionRateVolumetricDataItem.g.cs index b71a0be0..65ef815b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DepositionRateVolumetricDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DepositionRateVolumetricDataItem.g.cs @@ -10,7 +10,7 @@ public class DepositionRateVolumetricDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DEPOSITION_RATE_VOLUMETRIC"; - public const string NameId = ""; + public const string NameId = "depositionRateVolumetric"; public const string DefaultUnits = Devices.Units.CUBIC_MILLIMETER_PER_SECOND; public new const string DescriptionText = "Rate at which a spatial volume of material is deposited in an additive manufacturing process."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DepositionVolumeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DepositionVolumeDataItem.g.cs index 4a841d9d..1516db30 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DepositionVolumeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DepositionVolumeDataItem.g.cs @@ -10,7 +10,7 @@ public class DepositionVolumeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DEPOSITION_VOLUME"; - public const string NameId = ""; + public const string NameId = "depositionVolume"; public const string DefaultUnits = Devices.Units.CUBIC_MILLIMETER; public new const string DescriptionText = "Spatial volume of material to be deposited in an additive manufacturing process."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DeviceAddedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DeviceAddedDataItem.g.cs index bbef6307..c7e873fc 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DeviceAddedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DeviceAddedDataItem.g.cs @@ -10,7 +10,7 @@ public class DeviceAddedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DEVICE_ADDED"; - public const string NameId = ""; + public const string NameId = "deviceAdded"; public new const string DescriptionText = "UUID of new device added to an MTConnect Agent."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DeviceChangedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DeviceChangedDataItem.g.cs index a49ff03c..3edb9a53 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DeviceChangedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DeviceChangedDataItem.g.cs @@ -10,7 +10,7 @@ public class DeviceChangedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DEVICE_CHANGED"; - public const string NameId = ""; + public const string NameId = "deviceChanged"; public new const string DescriptionText = "UUID of the device whose metadata has changed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DeviceRemovedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DeviceRemovedDataItem.g.cs index fd468ac8..cd2683b4 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DeviceRemovedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DeviceRemovedDataItem.g.cs @@ -10,7 +10,7 @@ public class DeviceRemovedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DEVICE_REMOVED"; - public const string NameId = ""; + public const string NameId = "deviceRemoved"; public new const string DescriptionText = "UUID of a device removed from an MTConnect Agent."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DeviceUuidDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DeviceUuidDataItem.g.cs index aa39adfc..634f9fa5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DeviceUuidDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DeviceUuidDataItem.g.cs @@ -10,7 +10,7 @@ public class DeviceUuidDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DEVICE_UUID"; - public const string NameId = ""; + public const string NameId = "deviceUuid"; public new const string DescriptionText = "Identifier of another piece of equipment that is temporarily associated with a component of this piece of equipment to perform a particular function."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DewPointDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DewPointDataItem.g.cs index f1fa2436..201cfd32 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DewPointDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DewPointDataItem.g.cs @@ -10,7 +10,7 @@ public class DewPointDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DEW_POINT"; - public const string NameId = ""; + public const string NameId = "dewPoint"; public const string DefaultUnits = Devices.Units.CELSIUS; public new const string DescriptionText = "Temperature at which moisture begins to condense, corresponding to saturation for a given absolute humidity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DiameterDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DiameterDataItem.g.cs index 56304e51..bc9e3816 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DiameterDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DiameterDataItem.g.cs @@ -10,7 +10,7 @@ public class DiameterDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DIAMETER"; - public const string NameId = ""; + public const string NameId = "diameter"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Dimension of a diameter."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DirectionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DirectionDataItem.g.cs index ff761b5e..ac17059d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DirectionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DirectionDataItem.g.cs @@ -10,7 +10,7 @@ public class DirectionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DIRECTION"; - public const string NameId = ""; + public const string NameId = "direction"; public new const string DescriptionText = "Direction of motion."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DischargeRateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DischargeRateDataItem.g.cs index 71bb8c3a..b93f2e66 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DischargeRateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DischargeRateDataItem.g.cs @@ -10,7 +10,7 @@ public class DischargeRateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DISCHARGE_RATE"; - public const string NameId = ""; + public const string NameId = "dischargeRate"; public const string DefaultUnits = Devices.Units.AMPERE; public new const string DescriptionText = "Value of current being drawn from the Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DisplacementAngularDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DisplacementAngularDataItem.g.cs index 27b0310b..079c5497 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DisplacementAngularDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DisplacementAngularDataItem.g.cs @@ -10,7 +10,7 @@ public class DisplacementAngularDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DISPLACEMENT_ANGULAR"; - public const string NameId = ""; + public const string NameId = "displacementAngular"; public const string DefaultUnits = Devices.Units.DEGREE; public new const string DescriptionText = "Absolute value of the change in angular position around a vector"; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DisplacementDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DisplacementDataItem.g.cs index 688edfd5..5025b305 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DisplacementDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DisplacementDataItem.g.cs @@ -10,7 +10,7 @@ public class DisplacementDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DISPLACEMENT"; - public const string NameId = ""; + public const string NameId = "displacement"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Change in position of an object."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DisplacementLinearDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DisplacementLinearDataItem.g.cs index 2fd65c87..eabd55a9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DisplacementLinearDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DisplacementLinearDataItem.g.cs @@ -10,7 +10,7 @@ public class DisplacementLinearDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "DISPLACEMENT_LINEAR"; - public const string NameId = ""; + public const string NameId = "displacementLinear"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Absolute value of the change in position along a vector."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/DoorStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/DoorStateDataItem.g.cs index fa24a5a2..760d583a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/DoorStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/DoorStateDataItem.g.cs @@ -10,7 +10,7 @@ public class DoorStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "DOOR_STATE"; - public const string NameId = ""; + public const string NameId = "doorState"; public new const string DescriptionText = "Operational state of a Door component or composition element."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ElectricalEnergyDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ElectricalEnergyDataItem.g.cs index f833d453..d8e76020 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ElectricalEnergyDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ElectricalEnergyDataItem.g.cs @@ -10,7 +10,7 @@ public class ElectricalEnergyDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ELECTRICAL_ENERGY"; - public const string NameId = ""; + public const string NameId = "electricalEnergy"; public const string DefaultUnits = Devices.Units.WATT_SECOND; public new const string DescriptionText = "Wattage used or generated by a component over an interval of time."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/EmergencyStopDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/EmergencyStopDataItem.g.cs index 886cfd19..f6a70b84 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/EmergencyStopDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/EmergencyStopDataItem.g.cs @@ -10,7 +10,7 @@ public class EmergencyStopDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "EMERGENCY_STOP"; - public const string NameId = ""; + public const string NameId = "emergencyStop"; public new const string DescriptionText = "State of the emergency stop signal for a piece of equipment, controller path, or any other component or subsystem of a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/EndOfBarDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/EndOfBarDataItem.g.cs index 04705a56..d5a4f485 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/EndOfBarDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/EndOfBarDataItem.g.cs @@ -10,7 +10,7 @@ public class EndOfBarDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "END_OF_BAR"; - public const string NameId = ""; + public const string NameId = "endOfBar"; public new const string DescriptionText = "Indication of whether the end of a piece of bar stock being feed by a bar feeder has been reached."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/EquipmentModeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/EquipmentModeDataItem.g.cs index e132ccbb..a249e50a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/EquipmentModeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/EquipmentModeDataItem.g.cs @@ -10,7 +10,7 @@ public class EquipmentModeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "EQUIPMENT_MODE"; - public const string NameId = ""; + public const string NameId = "equipmentMode"; public new const string DescriptionText = "Indication that a piece of equipment, or a sub-part of a piece of equipment, is performing specific types of activities."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/EquipmentTimerDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/EquipmentTimerDataItem.g.cs index af8ede7d..3b8df773 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/EquipmentTimerDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/EquipmentTimerDataItem.g.cs @@ -10,7 +10,7 @@ public class EquipmentTimerDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "EQUIPMENT_TIMER"; - public const string NameId = ""; + public const string NameId = "equipmentTimer"; public const string DefaultUnits = Devices.Units.SECOND; public new const string DescriptionText = "Amount of time a piece of equipment or a sub-part of a piece of equipment has performed specific activities."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ExecutionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ExecutionDataItem.g.cs index 530e2dba..454210a7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ExecutionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ExecutionDataItem.g.cs @@ -10,7 +10,7 @@ public class ExecutionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "EXECUTION"; - public const string NameId = ""; + public const string NameId = "execution"; public new const string DescriptionText = "Execution status of the Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FeatureMeasurementDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FeatureMeasurementDataItem.g.cs index c0c76af0..55bd2c73 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FeatureMeasurementDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FeatureMeasurementDataItem.g.cs @@ -10,7 +10,7 @@ public class FeatureMeasurementDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "FEATURE_MEASUREMENT"; - public const string NameId = ""; + public const string NameId = "featureMeasurement"; public new const string DescriptionText = "Assessing elements of a feature."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FillLevelDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FillLevelDataItem.g.cs index cb5c7cfc..aa8bdf24 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FillLevelDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FillLevelDataItem.g.cs @@ -10,7 +10,7 @@ public class FillLevelDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "FILL_LEVEL"; - public const string NameId = ""; + public const string NameId = "fillLevel"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Amount of a substance remaining compared to the planned maximum amount of that substance."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FirmwareDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FirmwareDataItem.g.cs index bb69317f..5f29f169 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FirmwareDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FirmwareDataItem.g.cs @@ -10,7 +10,7 @@ public class FirmwareDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "FIRMWARE"; - public const string NameId = ""; + public const string NameId = "firmware"; public new const string DescriptionText = "Embedded software of a Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FixtureIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FixtureIdDataItem.g.cs index 0cd00eeb..3111be78 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FixtureIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FixtureIdDataItem.g.cs @@ -10,7 +10,7 @@ public class FixtureIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "FIXTURE_ID"; - public const string NameId = ""; + public const string NameId = "fixtureId"; public new const string DescriptionText = "Identifier for a fixture."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FlowDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FlowDataItem.g.cs index c3e257aa..6f6febdd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FlowDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FlowDataItem.g.cs @@ -10,7 +10,7 @@ public class FlowDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "FLOW"; - public const string NameId = ""; + public const string NameId = "flow"; public const string DefaultUnits = Devices.Units.LITER_PER_SECOND; public new const string DescriptionText = "Rate of flow of a fluid."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorAngularDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorAngularDataItem.g.cs index 90431185..61c387b3 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorAngularDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorAngularDataItem.g.cs @@ -10,7 +10,7 @@ public class FollowingErrorAngularDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "FOLLOWING_ERROR_ANGULAR"; - public const string NameId = ""; + public const string NameId = "followingErrorAngular"; public const string DefaultUnits = Devices.Units.DEGREE; public new const string DescriptionText = "Angular difference between the commanded encoder/resolver position and the actual encoder/resolver position at any specified point in time during a motion."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorDataItem.g.cs index 4032736a..c2aceacd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorDataItem.g.cs @@ -10,7 +10,7 @@ public class FollowingErrorDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "FOLLOWING_ERROR"; - public const string NameId = ""; + public const string NameId = "followingError"; public const string DefaultUnits = Devices.Units.COUNT; public new const string DescriptionText = "Difference between actual and commanded position at any specific point in time during a motion."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorLinearDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorLinearDataItem.g.cs index a985ce09..85c3a1ee 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorLinearDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FollowingErrorLinearDataItem.g.cs @@ -10,7 +10,7 @@ public class FollowingErrorLinearDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "FOLLOWING_ERROR_LINEAR"; - public const string NameId = ""; + public const string NameId = "followingErrorLinear"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Difference between the commanded encoder/resolver position and the actual encoder/resolver position at any specified point in time during a motion."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FrequencyDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FrequencyDataItem.g.cs index 7b4e78f3..6f2b4c90 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FrequencyDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FrequencyDataItem.g.cs @@ -10,7 +10,7 @@ public class FrequencyDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "FREQUENCY"; - public const string NameId = ""; + public const string NameId = "frequency"; public const string DefaultUnits = Devices.Units.HERTZ; public new const string DescriptionText = "Number of occurrences of a repeating event per unit time."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/FunctionalModeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/FunctionalModeDataItem.g.cs index c0a962f5..9868a7da 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/FunctionalModeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/FunctionalModeDataItem.g.cs @@ -10,7 +10,7 @@ public class FunctionalModeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "FUNCTIONAL_MODE"; - public const string NameId = ""; + public const string NameId = "functionalMode"; public new const string DescriptionText = "Current intended production status of the Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/GlobalPositionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/GlobalPositionDataItem.g.cs index aa7f1811..57eb8363 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/GlobalPositionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/GlobalPositionDataItem.g.cs @@ -10,7 +10,7 @@ public class GlobalPositionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "GLOBAL_POSITION"; - public const string NameId = ""; + public const string NameId = "globalPosition"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Position in three-dimensional space.**DEPRECATED** in Version 1.1."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/GravitationalAccelerationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/GravitationalAccelerationDataItem.g.cs index ff6e9bf5..c5119604 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/GravitationalAccelerationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/GravitationalAccelerationDataItem.g.cs @@ -10,7 +10,7 @@ public class GravitationalAccelerationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "GRAVITATIONAL_ACCELERATION"; - public const string NameId = ""; + public const string NameId = "gravitationalAcceleration"; public const string DefaultUnits = Devices.NativeUnits.GRAVITATIONAL_ACCELERATION; public new const string DescriptionText = "Acceleration relative to Earth's gravity of 9.80665 `METER/SECOND^2`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/GravitationalForceDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/GravitationalForceDataItem.g.cs index 897c46d4..fb77549a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/GravitationalForceDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/GravitationalForceDataItem.g.cs @@ -10,7 +10,7 @@ public class GravitationalForceDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "GRAVITATIONAL_FORCE"; - public const string NameId = ""; + public const string NameId = "gravitationalForce"; public const string DefaultUnits = Devices.NativeUnits.GRAVITATIONAL_FORCE; public new const string DescriptionText = "Force relative to earth's gravity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/HardnessDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/HardnessDataItem.g.cs index 8caba5e8..d647a001 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/HardnessDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/HardnessDataItem.g.cs @@ -10,7 +10,7 @@ public class HardnessDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "HARDNESS"; - public const string NameId = ""; + public const string NameId = "hardness"; public new const string DescriptionText = "Hardness of a material."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/HardwareDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/HardwareDataItem.g.cs index 0b39018c..c29b6045 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/HardwareDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/HardwareDataItem.g.cs @@ -10,7 +10,7 @@ public class HardwareDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "HARDWARE"; - public const string NameId = ""; + public const string NameId = "hardware"; public new const string DescriptionText = "Hardware of a Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/HostNameDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/HostNameDataItem.g.cs index 2e455016..4ff24c9e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/HostNameDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/HostNameDataItem.g.cs @@ -10,7 +10,7 @@ public class HostNameDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "HOST_NAME"; - public const string NameId = ""; + public const string NameId = "hostName"; public new const string DescriptionText = "Name of the host computer supplying data."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/HumidityAbsoluteDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/HumidityAbsoluteDataItem.g.cs index 801b7830..1e182644 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/HumidityAbsoluteDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/HumidityAbsoluteDataItem.g.cs @@ -10,7 +10,7 @@ public class HumidityAbsoluteDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "HUMIDITY_ABSOLUTE"; - public const string NameId = ""; + public const string NameId = "humidityAbsolute"; public const string DefaultUnits = Devices.Units.GRAM_PER_CUBIC_METER; public new const string DescriptionText = "Amount of water vapor expressed in grams per cubic meter."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/HumidityRelativeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/HumidityRelativeDataItem.g.cs index e9559cbe..086ea3df 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/HumidityRelativeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/HumidityRelativeDataItem.g.cs @@ -10,7 +10,7 @@ public class HumidityRelativeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "HUMIDITY_RELATIVE"; - public const string NameId = ""; + public const string NameId = "humidityRelative"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Amount of water vapor present expressed as a percent to reach saturation at the same temperature."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/HumiditySpecificDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/HumiditySpecificDataItem.g.cs index 114784aa..87c1f168 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/HumiditySpecificDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/HumiditySpecificDataItem.g.cs @@ -10,7 +10,7 @@ public class HumiditySpecificDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "HUMIDITY_SPECIFIC"; - public const string NameId = ""; + public const string NameId = "humiditySpecific"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Ratio of the water vapor present over the total weight of the water vapor and air present expressed as a percent."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LeakDetectDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LeakDetectDataItem.g.cs index 4ec4db55..aa6493fe 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LeakDetectDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LeakDetectDataItem.g.cs @@ -10,7 +10,7 @@ public class LeakDetectDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LEAK_DETECT"; - public const string NameId = ""; + public const string NameId = "leakDetect"; public new const string DescriptionText = "Indication designating whether a leak has been detected."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LengthDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LengthDataItem.g.cs index 66dcdfc3..cae4ad9a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LengthDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LengthDataItem.g.cs @@ -10,7 +10,7 @@ public class LengthDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "LENGTH"; - public const string NameId = ""; + public const string NameId = "length"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Length of an object."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LevelDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LevelDataItem.g.cs index 6b812328..2bf8c0dd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LevelDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LevelDataItem.g.cs @@ -10,7 +10,7 @@ public class LevelDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "LEVEL"; - public const string NameId = ""; + public const string NameId = "level"; public new const string DescriptionText = "Level of a resource.**DEPRECATED** in *Version 1.2*. See `FILL_LEVEL`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LibraryDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LibraryDataItem.g.cs index d5b4db54..954b2a50 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LibraryDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LibraryDataItem.g.cs @@ -10,7 +10,7 @@ public class LibraryDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LIBRARY"; - public const string NameId = ""; + public const string NameId = "library"; public new const string DescriptionText = "Software library on a Component"; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LineDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LineDataItem.g.cs index 53895499..8c831cab 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LineDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LineDataItem.g.cs @@ -10,7 +10,7 @@ public class LineDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LINE"; - public const string NameId = ""; + public const string NameId = "line"; public new const string DescriptionText = "Current line of code being executed.**DEPRECATED** in *Version 1.4.0*."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LineLabelDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LineLabelDataItem.g.cs index 6a1b250e..8ce3e43f 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LineLabelDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LineLabelDataItem.g.cs @@ -10,7 +10,7 @@ public class LineLabelDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LINE_LABEL"; - public const string NameId = ""; + public const string NameId = "lineLabel"; public new const string DescriptionText = "Identifier for a Block of code in a Program."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LineNumberDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LineNumberDataItem.g.cs index b115f4e4..9ce84484 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LineNumberDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LineNumberDataItem.g.cs @@ -10,7 +10,7 @@ public class LineNumberDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LINE_NUMBER"; - public const string NameId = ""; + public const string NameId = "lineNumber"; public new const string DescriptionText = "Position of a block of program code within a control program."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LinearForceDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LinearForceDataItem.g.cs index a33c3876..e68172a8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LinearForceDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LinearForceDataItem.g.cs @@ -10,7 +10,7 @@ public class LinearForceDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "LINEAR_FORCE"; - public const string NameId = ""; + public const string NameId = "linearForce"; public const string DefaultUnits = Devices.Units.NEWTON; public new const string DescriptionText = "Force applied to a mass in one direction only."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LoadCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LoadCountDataItem.g.cs index c61283fc..5bf8eaac 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LoadCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LoadCountDataItem.g.cs @@ -10,7 +10,7 @@ public class LoadCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LOAD_COUNT"; - public const string NameId = ""; + public const string NameId = "loadCount"; public new const string DescriptionText = "Accumulation of the number of times an operation has attempted to, or is planned to attempt to, load materials, parts, or other items."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LoadDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LoadDataItem.g.cs index ff32729f..960fc793 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LoadDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LoadDataItem.g.cs @@ -10,7 +10,7 @@ public class LoadDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "LOAD"; - public const string NameId = ""; + public const string NameId = "load"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Actual versus the standard rating of a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LockStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LockStateDataItem.g.cs index ed3cbbea..beea5ff4 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LockStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LockStateDataItem.g.cs @@ -10,7 +10,7 @@ public class LockStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "LOCK_STATE"; - public const string NameId = ""; + public const string NameId = "lockState"; public new const string DescriptionText = "State or operating mode of a Lock."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/LogicProgramDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/LogicProgramDataItem.g.cs index c409dae2..6f03e94e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/LogicProgramDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/LogicProgramDataItem.g.cs @@ -10,7 +10,7 @@ public class LogicProgramDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.CONDITION; public const string TypeId = "LOGIC_PROGRAM"; - public const string NameId = ""; + public const string NameId = "logicProgram"; public new const string DescriptionText = "Indication that an error occurred in the logic program or programmable logic controller (PLC) associated with a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MaintenanceListDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MaintenanceListDataItem.g.cs index 17fb5800..017e8b97 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MaintenanceListDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MaintenanceListDataItem.g.cs @@ -10,7 +10,7 @@ public class MaintenanceListDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MAINTENANCE_LIST"; - public const string NameId = ""; + public const string NameId = "maintenanceList"; public new const string DescriptionText = "Actions or activities to be performed in support of a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MassDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MassDataItem.g.cs index 2f07240a..c0033765 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MassDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MassDataItem.g.cs @@ -10,7 +10,7 @@ public class MassDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "MASS"; - public const string NameId = ""; + public const string NameId = "mass"; public const string DefaultUnits = Devices.Units.KILOGRAM; public new const string DescriptionText = "Mass of an object(s) or an amount of material."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MaterialDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MaterialDataItem.g.cs index 6eced6d3..35ffed33 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MaterialDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MaterialDataItem.g.cs @@ -10,7 +10,7 @@ public class MaterialDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL"; - public const string NameId = ""; + public const string NameId = "material"; public new const string DescriptionText = "Identifier of a material used or consumed in the manufacturing process."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MaterialLayerDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MaterialLayerDataItem.g.cs index b17d7be7..83a90ece 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MaterialLayerDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MaterialLayerDataItem.g.cs @@ -10,7 +10,7 @@ public class MaterialLayerDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL_LAYER"; - public const string NameId = ""; + public const string NameId = "materialLayer"; public new const string DescriptionText = "Identifies the layers of material applied to a part or product as part of an additive manufacturing process."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MeasurementTypeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MeasurementTypeDataItem.g.cs index 01c5b436..76e18436 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MeasurementTypeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MeasurementTypeDataItem.g.cs @@ -10,7 +10,7 @@ public class MeasurementTypeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MEASUREMENT_TYPE"; - public const string NameId = ""; + public const string NameId = "measurementType"; public new const string DescriptionText = "Class of measurement being performed. QIF 3:2018 Section 6.3"; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MeasurementUnitsDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MeasurementUnitsDataItem.g.cs index fcdb859d..356da6e5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MeasurementUnitsDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MeasurementUnitsDataItem.g.cs @@ -10,7 +10,7 @@ public class MeasurementUnitsDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MEASUREMENT_UNITS"; - public const string NameId = ""; + public const string NameId = "measurementUnits"; public new const string DescriptionText = "Engineering units of the measurement."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MeasurementValueDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MeasurementValueDataItem.g.cs index 10738188..9a5ac875 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MeasurementValueDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MeasurementValueDataItem.g.cs @@ -10,7 +10,7 @@ public class MeasurementValueDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MEASUREMENT_VALUE"; - public const string NameId = ""; + public const string NameId = "measurementValue"; public new const string DescriptionText = "Measurement based on the measurement type."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MessageDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MessageDataItem.g.cs index 9c1df26a..ec930931 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MessageDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MessageDataItem.g.cs @@ -10,7 +10,7 @@ public class MessageDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MESSAGE"; - public const string NameId = ""; + public const string NameId = "message"; public new const string DescriptionText = "Information to be transferred from a piece of equipment to a client software application."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/MotionProgramDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/MotionProgramDataItem.g.cs index 31599a7c..c14e0e67 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/MotionProgramDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/MotionProgramDataItem.g.cs @@ -10,7 +10,7 @@ public class MotionProgramDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.CONDITION; public const string TypeId = "MOTION_PROGRAM"; - public const string NameId = ""; + public const string NameId = "motionProgram"; public new const string DescriptionText = "Indication that an error occurred in the motion program associated with a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/NetworkDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/NetworkDataItem.g.cs index 2dfc0f69..8e18cd56 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/NetworkDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/NetworkDataItem.g.cs @@ -10,7 +10,7 @@ public class NetworkDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "NETWORK"; - public const string NameId = ""; + public const string NameId = "network"; public new const string DescriptionText = "Network details of a Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/NetworkPortDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/NetworkPortDataItem.g.cs index dcd3b2e0..b168554d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/NetworkPortDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/NetworkPortDataItem.g.cs @@ -10,7 +10,7 @@ public class NetworkPortDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "NETWORK_PORT"; - public const string NameId = ""; + public const string NameId = "networkPort"; public new const string DescriptionText = "Number of the TCP/IP or UDP/IP port for the connection endpoint."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ObservationUpdateRateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ObservationUpdateRateDataItem.g.cs index 889074d5..587a0e97 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ObservationUpdateRateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ObservationUpdateRateDataItem.g.cs @@ -10,7 +10,7 @@ public class ObservationUpdateRateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "OBSERVATION_UPDATE_RATE"; - public const string NameId = ""; + public const string NameId = "observationUpdateRate"; public const string DefaultUnits = Devices.Units.COUNT_PER_SECOND; public new const string DescriptionText = "Average rate of change of values for data items in the MTConnect streams. The average is computed over a rolling window defined by the implementation."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/OpennessDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/OpennessDataItem.g.cs index a83f946f..e0235be1 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/OpennessDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/OpennessDataItem.g.cs @@ -10,7 +10,7 @@ public class OpennessDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "OPENNESS"; - public const string NameId = ""; + public const string NameId = "openness"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Percentage open where 100% is fully open and 0% is fully closed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/OperatingModeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/OperatingModeDataItem.g.cs index f9e67965..243a5c15 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/OperatingModeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/OperatingModeDataItem.g.cs @@ -10,7 +10,7 @@ public class OperatingModeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "OPERATING_MODE"; - public const string NameId = ""; + public const string NameId = "operatingMode"; public new const string DescriptionText = "State of Component or Composition that describes the automatic or manual operation of the entity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/OperatingSystemDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/OperatingSystemDataItem.g.cs index 7db8c58d..3034a8f5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/OperatingSystemDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/OperatingSystemDataItem.g.cs @@ -10,7 +10,7 @@ public class OperatingSystemDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "OPERATING_SYSTEM"; - public const string NameId = ""; + public const string NameId = "operatingSystem"; public new const string DescriptionText = "Operating System (OS) of a Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/OperatorIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/OperatorIdDataItem.g.cs index c2f14cdb..992691ab 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/OperatorIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/OperatorIdDataItem.g.cs @@ -10,7 +10,7 @@ public class OperatorIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "OPERATOR_ID"; - public const string NameId = ""; + public const string NameId = "operatorId"; public new const string DescriptionText = "Identifier of the person currently responsible for operating the piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/OrientationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/OrientationDataItem.g.cs index d7b4708c..c557d840 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/OrientationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/OrientationDataItem.g.cs @@ -10,7 +10,7 @@ public class OrientationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ORIENTATION"; - public const string NameId = ""; + public const string NameId = "orientation"; public const string DefaultUnits = Devices.Units.DEGREE_3D; public new const string DescriptionText = "Angular position of a plane or vector relative to a cartesian coordinate system"; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PHDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PHDataItem.g.cs index 9163db1f..6e4e7e6e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PHDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PHDataItem.g.cs @@ -10,7 +10,7 @@ public class PHDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PH"; - public const string NameId = ""; + public const string NameId = "ph"; public const string DefaultUnits = Devices.Units.PH; public new const string DescriptionText = "Acidity or alkalinity of a solution."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PalletIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PalletIdDataItem.g.cs index a7361e45..ce95cdeb 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PalletIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PalletIdDataItem.g.cs @@ -10,7 +10,7 @@ public class PalletIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PALLET_ID"; - public const string NameId = ""; + public const string NameId = "palletId"; public new const string DescriptionText = "Identifier for a pallet."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartCountDataItem.g.cs index 5a1859a0..1f9cb8a8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartCountDataItem.g.cs @@ -10,7 +10,7 @@ public class PartCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_COUNT"; - public const string NameId = ""; + public const string NameId = "partCount"; public new const string DescriptionText = "Aggregate count of parts."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartCountTypeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartCountTypeDataItem.g.cs index 8cbb0a71..67f64518 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartCountTypeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartCountTypeDataItem.g.cs @@ -10,7 +10,7 @@ public class PartCountTypeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_COUNT_TYPE"; - public const string NameId = ""; + public const string NameId = "partCountType"; public new const string DescriptionText = "Interpretation of `PART_COUNT`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartDetectDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartDetectDataItem.g.cs index 7768537a..a9eddc50 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartDetectDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartDetectDataItem.g.cs @@ -10,7 +10,7 @@ public class PartDetectDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_DETECT"; - public const string NameId = ""; + public const string NameId = "partDetect"; public new const string DescriptionText = "Indication designating whether a part or work piece has been detected or is present."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartGroupIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartGroupIdDataItem.g.cs index c308a2fd..efee5e7b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartGroupIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartGroupIdDataItem.g.cs @@ -10,7 +10,7 @@ public class PartGroupIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_GROUP_ID"; - public const string NameId = ""; + public const string NameId = "partGroupId"; public new const string DescriptionText = "Identifier given to a collection of individual parts."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartIdDataItem.g.cs index 44625ef8..0b1eb970 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartIdDataItem.g.cs @@ -10,7 +10,7 @@ public class PartIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_ID"; - public const string NameId = ""; + public const string NameId = "partId"; public new const string DescriptionText = "Identifier of a part in a manufacturing operation."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartKindIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartKindIdDataItem.g.cs index 72e32a12..4f2f63c1 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartKindIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartKindIdDataItem.g.cs @@ -10,7 +10,7 @@ public class PartKindIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_KIND_ID"; - public const string NameId = ""; + public const string NameId = "partKindId"; public new const string DescriptionText = "Identifier given to link the individual occurrence to a class of parts, typically distinguished by a particular part design."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartNumberDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartNumberDataItem.g.cs index 83728b24..907d0ffa 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartNumberDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartNumberDataItem.g.cs @@ -10,7 +10,7 @@ public class PartNumberDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_NUMBER"; - public const string NameId = ""; + public const string NameId = "partNumber"; public new const string DescriptionText = "Identifier of a part or product moving through the manufacturing process.**DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a `subType` of `PART_KIND_ID`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartProcessingStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartProcessingStateDataItem.g.cs index 85fc7dfa..016673bc 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartProcessingStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartProcessingStateDataItem.g.cs @@ -10,7 +10,7 @@ public class PartProcessingStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_PROCESSING_STATE"; - public const string NameId = ""; + public const string NameId = "partProcessingState"; public new const string DescriptionText = "Particular condition of the part occurrence at a specific time."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartStatusDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartStatusDataItem.g.cs index bb3bc35e..cdc3f183 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartStatusDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartStatusDataItem.g.cs @@ -10,7 +10,7 @@ public class PartStatusDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_STATUS"; - public const string NameId = ""; + public const string NameId = "partStatus"; public new const string DescriptionText = "State or condition of a part."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PartUniqueIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PartUniqueIdDataItem.g.cs index 5f4516fc..2df1c5ef 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PartUniqueIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PartUniqueIdDataItem.g.cs @@ -10,7 +10,7 @@ public class PartUniqueIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_UNIQUE_ID"; - public const string NameId = ""; + public const string NameId = "partUniqueId"; public new const string DescriptionText = "Identifier given to a distinguishable, individual part."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateDataItem.g.cs index 1d637eb7..c0b8a605 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateDataItem.g.cs @@ -10,7 +10,7 @@ public class PathFeedrateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PATH_FEEDRATE"; - public const string NameId = ""; + public const string NameId = "pathFeedrate"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_SECOND; public new const string DescriptionText = "Feedrate for the axes, or a single axis, associated with a Path component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateOverrideDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateOverrideDataItem.g.cs index 02b6149c..7d8d1f82 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateOverrideDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PathFeedrateOverrideDataItem.g.cs @@ -10,7 +10,7 @@ public class PathFeedrateOverrideDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PATH_FEEDRATE_OVERRIDE"; - public const string NameId = ""; + public const string NameId = "pathFeedrateOverride"; public new const string DescriptionText = "Value of a signal or calculation issued to adjust the feedrate for the axes associated with a Path component that may represent a single axis or the coordinated movement of multiple axes."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PathFeedratePerRevolutionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PathFeedratePerRevolutionDataItem.g.cs index 57fd2e1f..3e9ccd3f 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PathFeedratePerRevolutionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PathFeedratePerRevolutionDataItem.g.cs @@ -10,7 +10,7 @@ public class PathFeedratePerRevolutionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PATH_FEEDRATE_PER_REVOLUTION"; - public const string NameId = ""; + public const string NameId = "pathFeedratePerRevolution"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_REVOLUTION; public new const string DescriptionText = "Feedrate for the axes, or a single axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PathModeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PathModeDataItem.g.cs index d3cf05ff..f9ac49c6 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PathModeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PathModeDataItem.g.cs @@ -10,7 +10,7 @@ public class PathModeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PATH_MODE"; - public const string NameId = ""; + public const string NameId = "pathMode"; public new const string DescriptionText = "Describes the operational relationship between a Path entity and another Path entity for pieces of equipment comprised of multiple logical groupings of controlled axes or other logical operations."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PathPositionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PathPositionDataItem.g.cs index 4cf7a6b1..b367bbaa 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PathPositionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PathPositionDataItem.g.cs @@ -10,7 +10,7 @@ public class PathPositionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PATH_POSITION"; - public const string NameId = ""; + public const string NameId = "pathPosition"; public const string DefaultUnits = Devices.Units.MILLIMETER_3D; public new const string DescriptionText = "Position of a control point associated with a Controller or a Path."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PositionCartesianDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PositionCartesianDataItem.g.cs index 22f546a5..77b086d8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PositionCartesianDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PositionCartesianDataItem.g.cs @@ -10,7 +10,7 @@ public class PositionCartesianDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "POSITION_CARTESIAN"; - public const string NameId = ""; + public const string NameId = "positionCartesian"; public const string DefaultUnits = Devices.Units.MILLIMETER_3D; public new const string DescriptionText = "Point in a cartesian coordinate system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PositionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PositionDataItem.g.cs index 94d0eb2d..9875f30c 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PositionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PositionDataItem.g.cs @@ -10,7 +10,7 @@ public class PositionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "POSITION"; - public const string NameId = ""; + public const string NameId = "position"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Point along an axis in a cartesian coordinate system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PowerFactorDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PowerFactorDataItem.g.cs index 44002bf9..c27318ba 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PowerFactorDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PowerFactorDataItem.g.cs @@ -10,7 +10,7 @@ public class PowerFactorDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "POWER_FACTOR"; - public const string NameId = ""; + public const string NameId = "powerFactor"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Ratio of real power flowing to a load to the apparent power in that AC circuit."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PowerStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PowerStateDataItem.g.cs index a4bfb61f..bd9ac0a7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PowerStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PowerStateDataItem.g.cs @@ -10,7 +10,7 @@ public class PowerStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "POWER_STATE"; - public const string NameId = ""; + public const string NameId = "powerState"; public new const string DescriptionText = "Indication of the status of the source of energy for an entity to allow it to perform its intended function or the state of an enabling signal providing permission for the entity to perform its functions."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PowerStatusDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PowerStatusDataItem.g.cs index eff771aa..56235a21 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PowerStatusDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PowerStatusDataItem.g.cs @@ -10,7 +10,7 @@ public class PowerStatusDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "POWER_STATUS"; - public const string NameId = ""; + public const string NameId = "powerStatus"; public new const string DescriptionText = "Status of the Component.**DEPRECATED** in *Version 1.1.0*."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PressureAbsoluteDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PressureAbsoluteDataItem.g.cs index 634a63e2..6cdf81fc 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PressureAbsoluteDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PressureAbsoluteDataItem.g.cs @@ -10,7 +10,7 @@ public class PressureAbsoluteDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PRESSURE_ABSOLUTE"; - public const string NameId = ""; + public const string NameId = "pressureAbsolute"; public const string DefaultUnits = Devices.Units.PASCAL; public new const string DescriptionText = "Force per unit area measured relative to a vacuum."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PressureDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PressureDataItem.g.cs index 7ff7bf75..69b8297c 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PressureDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PressureDataItem.g.cs @@ -10,7 +10,7 @@ public class PressureDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PRESSURE"; - public const string NameId = ""; + public const string NameId = "pressure"; public const string DefaultUnits = Devices.Units.PASCAL; public new const string DescriptionText = "Force per unit area measured relative to atmospheric pressure. Commonly referred to as gauge pressure."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/PressurizationRateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/PressurizationRateDataItem.g.cs index de659f03..e7fc5222 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/PressurizationRateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/PressurizationRateDataItem.g.cs @@ -10,7 +10,7 @@ public class PressurizationRateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PRESSURIZATION_RATE"; - public const string NameId = ""; + public const string NameId = "pressurizationRate"; public const string DefaultUnits = Devices.Units.PASCAL_PER_SECOND; public new const string DescriptionText = "Change of pressure per unit time."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProcessAggregateIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProcessAggregateIdDataItem.g.cs index 02d52793..aae769f5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProcessAggregateIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProcessAggregateIdDataItem.g.cs @@ -10,7 +10,7 @@ public class ProcessAggregateIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROCESS_AGGREGATE_ID"; - public const string NameId = ""; + public const string NameId = "processAggregateId"; public new const string DescriptionText = "Identifier given to link the individual occurrence to a group of related occurrences, such as a process step in a process plan."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProcessKindIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProcessKindIdDataItem.g.cs index 09cfbd5a..34921ee0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProcessKindIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProcessKindIdDataItem.g.cs @@ -10,7 +10,7 @@ public class ProcessKindIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROCESS_KIND_ID"; - public const string NameId = ""; + public const string NameId = "processKindId"; public new const string DescriptionText = "Identifier given to link the individual occurrence to a class of processes or process definition."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProcessOccurrenceIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProcessOccurrenceIdDataItem.g.cs index daf37a45..4dec4db9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProcessOccurrenceIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProcessOccurrenceIdDataItem.g.cs @@ -10,7 +10,7 @@ public class ProcessOccurrenceIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROCESS_OCCURRENCE_ID"; - public const string NameId = ""; + public const string NameId = "processOccurrenceId"; public new const string DescriptionText = "Identifier of a process being executed by the device."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProcessStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProcessStateDataItem.g.cs index 78711a28..ef9dccd9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProcessStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProcessStateDataItem.g.cs @@ -10,7 +10,7 @@ public class ProcessStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROCESS_STATE"; - public const string NameId = ""; + public const string NameId = "processState"; public new const string DescriptionText = "Particular condition of the process occurrence at a specific time."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimeDataItem.g.cs index 9319e63d..d661cec4 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimeDataItem.g.cs @@ -10,7 +10,7 @@ public class ProcessTimeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROCESS_TIME"; - public const string NameId = ""; + public const string NameId = "processTime"; public new const string DescriptionText = "Time and date associated with an activity or event."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimerDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimerDataItem.g.cs index 257a7510..7c3ac57d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimerDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProcessTimerDataItem.g.cs @@ -10,7 +10,7 @@ public class ProcessTimerDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "PROCESS_TIMER"; - public const string NameId = ""; + public const string NameId = "processTimer"; public const string DefaultUnits = Devices.Units.SECOND; public new const string DescriptionText = "Amount of time a piece of equipment has performed different types of activities associated with the process being performed at that piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramCommentDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramCommentDataItem.g.cs index 887db531..68da6a18 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramCommentDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramCommentDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramCommentDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_COMMENT"; - public const string NameId = ""; + public const string NameId = "programComment"; public new const string DescriptionText = "Comment or non-executable statement in the control program."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramDataItem.g.cs index 0d7c001e..9cff979a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM"; - public const string NameId = ""; + public const string NameId = "program"; public new const string DescriptionText = "Name of the logic or motion program being executed by the Controller component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditDataItem.g.cs index 4963ea4f..49f1f494 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramEditDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_EDIT"; - public const string NameId = ""; + public const string NameId = "programEdit"; public new const string DescriptionText = "Indication of the status of the Controller components program editing mode.A program may be edited while another is executed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditNameDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditNameDataItem.g.cs index 92200258..dc1df196 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditNameDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramEditNameDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramEditNameDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_EDIT_NAME"; - public const string NameId = ""; + public const string NameId = "programEditName"; public new const string DescriptionText = "Name of the program being edited. This is used in conjunction with ProgramEdit when in `ACTIVE` state."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramHeaderDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramHeaderDataItem.g.cs index 4bf9482f..4c694d86 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramHeaderDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramHeaderDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramHeaderDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_HEADER"; - public const string NameId = ""; + public const string NameId = "programHeader"; public new const string DescriptionText = "Non-executable header section of the control program."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationDataItem.g.cs index 93856a93..c1b80389 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramLocationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_LOCATION"; - public const string NameId = ""; + public const string NameId = "programLocation"; public new const string DescriptionText = "URI for the source file associated with Program."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationTypeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationTypeDataItem.g.cs index 46026b0b..1311b3c5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationTypeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramLocationTypeDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramLocationTypeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_LOCATION_TYPE"; - public const string NameId = ""; + public const string NameId = "programLocationType"; public new const string DescriptionText = "Defines whether the logic or motion program defined by Program is being executed from the local memory of the controller or from an outside source."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ProgramNestLevelDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ProgramNestLevelDataItem.g.cs index b95f7ad5..067debb7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ProgramNestLevelDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ProgramNestLevelDataItem.g.cs @@ -10,7 +10,7 @@ public class ProgramNestLevelDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PROGRAM_NEST_LEVEL"; - public const string NameId = ""; + public const string NameId = "programNestLevel"; public new const string DescriptionText = "Indication of the nesting level within a control program that is associated with the code or instructions that is currently being executed."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ResistanceDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ResistanceDataItem.g.cs index aae034d0..6da5443a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ResistanceDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ResistanceDataItem.g.cs @@ -10,7 +10,7 @@ public class ResistanceDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "RESISTANCE"; - public const string NameId = ""; + public const string NameId = "resistance"; public const string DefaultUnits = Devices.Units.OHM; public new const string DescriptionText = "Degree to which a substance opposes the passage of an electric current."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/RotaryModeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/RotaryModeDataItem.g.cs index 2811e2d2..1c2e775b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/RotaryModeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/RotaryModeDataItem.g.cs @@ -10,7 +10,7 @@ public class RotaryModeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ROTARY_MODE"; - public const string NameId = ""; + public const string NameId = "rotaryMode"; public new const string DescriptionText = "Current operating mode for a Rotary type axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityDataItem.g.cs index 67686bb5..1d24b8eb 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityDataItem.g.cs @@ -10,7 +10,7 @@ public class RotaryVelocityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "ROTARY_VELOCITY"; - public const string NameId = ""; + public const string NameId = "rotaryVelocity"; public const string DefaultUnits = Devices.Units.REVOLUTION_PER_MINUTE; public new const string DescriptionText = "Rotational speed of a rotary axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityOverrideDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityOverrideDataItem.g.cs index 5d77fe9e..81e9e46f 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityOverrideDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/RotaryVelocityOverrideDataItem.g.cs @@ -10,7 +10,7 @@ public class RotaryVelocityOverrideDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ROTARY_VELOCITY_OVERRIDE"; - public const string NameId = ""; + public const string NameId = "rotaryVelocityOverride"; public new const string DescriptionText = "Percentage change to the velocity of the programmed velocity for a Rotary axis."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/RotationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/RotationDataItem.g.cs index 0f9be19a..ec7743d9 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/RotationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/RotationDataItem.g.cs @@ -10,7 +10,7 @@ public class RotationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "ROTATION"; - public const string NameId = ""; + public const string NameId = "rotation"; public const string DefaultUnits = Devices.Units.DEGREE_3D; public new const string DescriptionText = "Three space angular displacement of an object or coordinate system relative to a cartesian coordinate system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SensorAttachmentDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SensorAttachmentDataItem.g.cs index f5dcd8c7..8b252549 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SensorAttachmentDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SensorAttachmentDataItem.g.cs @@ -10,7 +10,7 @@ public class SensorAttachmentDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "SENSOR_ATTACHMENT"; - public const string NameId = ""; + public const string NameId = "sensorAttachment"; public new const string DescriptionText = "Attachment between a sensor and an entity."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SensorStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SensorStateDataItem.g.cs index 627036ad..906e04e1 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SensorStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SensorStateDataItem.g.cs @@ -10,7 +10,7 @@ public class SensorStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "SENSOR_STATE"; - public const string NameId = ""; + public const string NameId = "sensorState"; public new const string DescriptionText = "Detection result of a sensor."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SerialNumberDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SerialNumberDataItem.g.cs index 098d022d..5f76d860 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SerialNumberDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SerialNumberDataItem.g.cs @@ -10,7 +10,7 @@ public class SerialNumberDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "SERIAL_NUMBER"; - public const string NameId = ""; + public const string NameId = "serialNumber"; public new const string DescriptionText = "Serial number associated with a Component, Asset, or Device."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorAngularDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorAngularDataItem.g.cs index fd705559..71a111a2 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorAngularDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorAngularDataItem.g.cs @@ -10,7 +10,7 @@ public class SettlingErrorAngularDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "SETTLING_ERROR_ANGULAR"; - public const string NameId = ""; + public const string NameId = "settlingErrorAngular"; public const string DefaultUnits = Devices.Units.DEGREE; public new const string DescriptionText = "Angular difference between the commanded encoder/resolver position, and the actual encoder/resolver position when motion is complete."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorDataItem.g.cs index f3da270b..a18c3167 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorDataItem.g.cs @@ -10,7 +10,7 @@ public class SettlingErrorDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "SETTLING_ERROR"; - public const string NameId = ""; + public const string NameId = "settlingError"; public const string DefaultUnits = Devices.Units.COUNT; public new const string DescriptionText = "Difference between actual and commanded position at the end of a motion."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorLinearDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorLinearDataItem.g.cs index e9cb1900..c71affdb 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorLinearDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SettlingErrorLinearDataItem.g.cs @@ -10,7 +10,7 @@ public class SettlingErrorLinearDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "SETTLING_ERROR_LINEAR"; - public const string NameId = ""; + public const string NameId = "settlingErrorLinear"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Difference between the commanded encoder/resolver position, and the actual encoder/resolver position when motion is complete."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SoundLevelDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SoundLevelDataItem.g.cs index ff25a692..c4f7bba0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SoundLevelDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SoundLevelDataItem.g.cs @@ -10,7 +10,7 @@ public class SoundLevelDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "SOUND_LEVEL"; - public const string NameId = ""; + public const string NameId = "soundLevel"; public const string DefaultUnits = Devices.Units.DECIBEL; public new const string DescriptionText = "Sound level or sound pressure level relative to atmospheric pressure."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SpecificationLimitDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SpecificationLimitDataItem.g.cs index 7add23f1..bcbb1c83 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SpecificationLimitDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SpecificationLimitDataItem.g.cs @@ -10,7 +10,7 @@ public class SpecificationLimitDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "SPECIFICATION_LIMIT"; - public const string NameId = ""; + public const string NameId = "specificationLimit"; public new const string DescriptionText = "Set of limits defining a range of values designating acceptable performance for a variable."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SpindleInterlockDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SpindleInterlockDataItem.g.cs index dbf7580d..8473fe9b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SpindleInterlockDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SpindleInterlockDataItem.g.cs @@ -10,7 +10,7 @@ public class SpindleInterlockDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "SPINDLE_INTERLOCK"; - public const string NameId = ""; + public const string NameId = "spindleInterlock"; public new const string DescriptionText = "Indication of the status of the spindle for a piece of equipment when power has been removed and it is free to rotate."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SpindleSpeedDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SpindleSpeedDataItem.g.cs index 71ecd740..f2edf9c8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SpindleSpeedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SpindleSpeedDataItem.g.cs @@ -10,7 +10,7 @@ public class SpindleSpeedDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "SPINDLE_SPEED"; - public const string NameId = ""; + public const string NameId = "spindleSpeed"; public const string DefaultUnits = Devices.Units.REVOLUTION_PER_MINUTE; public new const string DescriptionText = "Rotational speed of the rotary axis.**DEPRECATED** in *Version 1.2*. Replaced by `ROTARY_VELOCITY`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/StrainDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/StrainDataItem.g.cs index 803dea9c..0d956bb8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/StrainDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/StrainDataItem.g.cs @@ -10,7 +10,7 @@ public class StrainDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "STRAIN"; - public const string NameId = ""; + public const string NameId = "strain"; public const string DefaultUnits = Devices.Units.PERCENT; public new const string DescriptionText = "Amount of deformation per unit length of an object when a load is applied."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/SystemDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/SystemDataItem.g.cs index 3c9975bc..14a3fc2d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/SystemDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/SystemDataItem.g.cs @@ -10,7 +10,7 @@ public class SystemDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.CONDITION; public const string TypeId = "SYSTEM"; - public const string NameId = ""; + public const string NameId = "system"; public new const string DescriptionText = "General purpose indication associated with an electronic component of a piece of equipment or a controller that represents a fault that is not associated with the operator, program, or hardware."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/TemperatureDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/TemperatureDataItem.g.cs index 8e0c31ee..a6cb99f5 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/TemperatureDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/TemperatureDataItem.g.cs @@ -10,7 +10,7 @@ public class TemperatureDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "TEMPERATURE"; - public const string NameId = ""; + public const string NameId = "temperature"; public const string DefaultUnits = Devices.Units.CELSIUS; public new const string DescriptionText = "Degree of hotness or coldness measured on a definite scale."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/TensionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/TensionDataItem.g.cs index 4e40e8d5..84b8798f 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/TensionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/TensionDataItem.g.cs @@ -10,7 +10,7 @@ public class TensionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "TENSION"; - public const string NameId = ""; + public const string NameId = "tension"; public const string DefaultUnits = Devices.Units.NEWTON; public new const string DescriptionText = "Force that stretches or elongates an object."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/TiltDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/TiltDataItem.g.cs index 7126e20d..88f43d2d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/TiltDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/TiltDataItem.g.cs @@ -10,7 +10,7 @@ public class TiltDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "TILT"; - public const string NameId = ""; + public const string NameId = "tilt"; public const string DefaultUnits = Devices.Units.MICRO_RADIAN; public new const string DescriptionText = "Angular displacement."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ToolAssetIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ToolAssetIdDataItem.g.cs index d2f23f31..270aca90 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ToolAssetIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ToolAssetIdDataItem.g.cs @@ -10,7 +10,7 @@ public class ToolAssetIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TOOL_ASSET_ID"; - public const string NameId = ""; + public const string NameId = "toolAssetId"; public new const string DescriptionText = "Identifier of an individual tool asset."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ToolGroupDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ToolGroupDataItem.g.cs index 369bf498..bb604d0b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ToolGroupDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ToolGroupDataItem.g.cs @@ -10,7 +10,7 @@ public class ToolGroupDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TOOL_GROUP"; - public const string NameId = ""; + public const string NameId = "toolGroup"; public new const string DescriptionText = "Identifier for the tool group associated with a specific tool. Commonly used to designate spare tools."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ToolIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ToolIdDataItem.g.cs index 3443df11..5a4af1af 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ToolIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ToolIdDataItem.g.cs @@ -10,7 +10,7 @@ public class ToolIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TOOL_ID"; - public const string NameId = ""; + public const string NameId = "toolId"; public new const string DescriptionText = "Identifier of the tool currently in use for a given `Path`.**DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ToolNumberDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ToolNumberDataItem.g.cs index f6e692de..4a7db702 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ToolNumberDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ToolNumberDataItem.g.cs @@ -10,7 +10,7 @@ public class ToolNumberDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TOOL_NUMBER"; - public const string NameId = ""; + public const string NameId = "toolNumber"; public new const string DescriptionText = "Identifier assigned by the Controller component to a cutting tool when in use by a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetDataItem.g.cs index a356a557..4abafd64 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetDataItem.g.cs @@ -10,7 +10,7 @@ public class ToolOffsetDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TOOL_OFFSET"; - public const string NameId = ""; + public const string NameId = "toolOffset"; public new const string DescriptionText = "Reference to the tool offset variables applied to the active cutting tool."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetsDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetsDataItem.g.cs index 464c1e0a..d95280e1 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetsDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ToolOffsetsDataItem.g.cs @@ -10,7 +10,7 @@ public class ToolOffsetsDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TOOL_OFFSETS"; - public const string NameId = ""; + public const string NameId = "toolOffsets"; public new const string DescriptionText = "Properties of each addressable tool offset."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/TorqueDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/TorqueDataItem.g.cs index abdaa581..28259d70 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/TorqueDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/TorqueDataItem.g.cs @@ -10,7 +10,7 @@ public class TorqueDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "TORQUE"; - public const string NameId = ""; + public const string NameId = "torque"; public const string DefaultUnits = Devices.Units.NEWTON_METER; public new const string DescriptionText = "Turning force exerted on an object or by an object."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/TransferCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/TransferCountDataItem.g.cs index 2499c62b..1ca76617 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/TransferCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/TransferCountDataItem.g.cs @@ -10,7 +10,7 @@ public class TransferCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TRANSFER_COUNT"; - public const string NameId = ""; + public const string NameId = "transferCount"; public new const string DescriptionText = "Accumulation of the number of times an operation has attempted to, or is planned to attempt to, transfer materials, parts, or other items from one location to another."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/TranslationDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/TranslationDataItem.g.cs index 40cd2ca9..f95aa16b 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/TranslationDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/TranslationDataItem.g.cs @@ -10,7 +10,7 @@ public class TranslationDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "TRANSLATION"; - public const string NameId = ""; + public const string NameId = "translation"; public const string DefaultUnits = Devices.Units.MILLIMETER_3D; public new const string DescriptionText = "Three space linear displacement of an object or coordinate system relative to a cartesian coordinate system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyDataItem.g.cs index fcafd82c..5548414e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyDataItem.g.cs @@ -10,7 +10,7 @@ public class UncertaintyDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "UNCERTAINTY"; - public const string NameId = ""; + public const string NameId = "uncertainty"; public new const string DescriptionText = "Uncertainty specified by UncertaintyType."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyTypeDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyTypeDataItem.g.cs index 6d173c5a..f8b4a777 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyTypeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/UncertaintyTypeDataItem.g.cs @@ -10,7 +10,7 @@ public class UncertaintyTypeDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "UNCERTAINTY_TYPE"; - public const string NameId = ""; + public const string NameId = "uncertaintyType"; public new const string DescriptionText = "Method used to compute standard uncertainty."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/UnloadCountDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/UnloadCountDataItem.g.cs index 50d0c012..0a327ac0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/UnloadCountDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/UnloadCountDataItem.g.cs @@ -10,7 +10,7 @@ public class UnloadCountDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "UNLOAD_COUNT"; - public const string NameId = ""; + public const string NameId = "unloadCount"; public new const string DescriptionText = "Accumulation of the number of times an operation has attempted to, or is planned to attempt to, unload materials, parts, or other items."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/UserDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/UserDataItem.g.cs index 2cebe785..490b25e7 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/UserDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/UserDataItem.g.cs @@ -10,7 +10,7 @@ public class UserDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "USER"; - public const string NameId = ""; + public const string NameId = "user"; public new const string DescriptionText = "Identifier of the person currently responsible for operating the piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ValveStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ValveStateDataItem.g.cs index 276a0f0a..eef57804 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ValveStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ValveStateDataItem.g.cs @@ -10,7 +10,7 @@ public class ValveStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "VALVE_STATE"; - public const string NameId = ""; + public const string NameId = "valveState"; public new const string DescriptionText = "State of a valve is one of open, closed, or transitioning between the states."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VariableDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VariableDataItem.g.cs index e1b4d41d..9cec7aac 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VariableDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VariableDataItem.g.cs @@ -10,7 +10,7 @@ public class VariableDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "VARIABLE"; - public const string NameId = ""; + public const string NameId = "variable"; public new const string DescriptionText = "Data whose meaning may change over time due to changes in the operation of a piece of equipment or the process being executed on that piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VelocityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VelocityDataItem.g.cs index 684f3187..84f4370d 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VelocityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VelocityDataItem.g.cs @@ -10,7 +10,7 @@ public class VelocityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VELOCITY"; - public const string NameId = ""; + public const string NameId = "velocity"; public const string DefaultUnits = Devices.Units.MILLIMETER_PER_SECOND; public new const string DescriptionText = "Rate of change of position of a Component."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ViscosityDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ViscosityDataItem.g.cs index c95bf8b9..e48993a1 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ViscosityDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ViscosityDataItem.g.cs @@ -10,7 +10,7 @@ public class ViscosityDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VISCOSITY"; - public const string NameId = ""; + public const string NameId = "viscosity"; public const string DefaultUnits = Devices.Units.PASCAL_SECOND; public new const string DescriptionText = "Fluid's resistance to flow."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereDataItem.g.cs index 6bed7c9d..b34c654e 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereDataItem.g.cs @@ -10,7 +10,7 @@ public class VoltAmpereDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLT_AMPERE"; - public const string NameId = ""; + public const string NameId = "voltAmpere"; public const string DefaultUnits = Devices.Units.VOLT_AMPERE; public new const string DescriptionText = "Apparent power in an electrical circuit, equal to the product of root-mean-square (RMS) voltage and RMS current (commonly referred to as VA)."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereReactiveDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereReactiveDataItem.g.cs index 0c261971..9423a0cb 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereReactiveDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VoltAmpereReactiveDataItem.g.cs @@ -10,7 +10,7 @@ public class VoltAmpereReactiveDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLT_AMPERE_REACTIVE"; - public const string NameId = ""; + public const string NameId = "voltAmpereReactive"; public const string DefaultUnits = Devices.Units.VOLT_AMPERE_REACTIVE; public new const string DescriptionText = "Reactive power in an AC electrical circuit (commonly referred to as VAR)."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VoltageACDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VoltageACDataItem.g.cs index 801ef0d6..1cce18ed 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VoltageACDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VoltageACDataItem.g.cs @@ -10,7 +10,7 @@ public class VoltageACDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLTAGE_AC"; - public const string NameId = ""; + public const string NameId = "voltageAc"; public const string DefaultUnits = Devices.Units.VOLT; public new const string DescriptionText = "Electrical potential between two points in an electrical circuit in which the current periodically reverses direction."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VoltageDCDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VoltageDCDataItem.g.cs index 0facf7f5..ea8d7023 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VoltageDCDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VoltageDCDataItem.g.cs @@ -10,7 +10,7 @@ public class VoltageDCDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLTAGE_DC"; - public const string NameId = ""; + public const string NameId = "voltageDc"; public const string DefaultUnits = Devices.Units.VOLT; public new const string DescriptionText = "Electrical potential between two points in an electrical circuit in which the current is unidirectional."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VoltageDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VoltageDataItem.g.cs index d4d7c221..efe5d496 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VoltageDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VoltageDataItem.g.cs @@ -10,7 +10,7 @@ public class VoltageDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLTAGE"; - public const string NameId = ""; + public const string NameId = "voltage"; public const string DefaultUnits = Devices.Units.VOLT; public new const string DescriptionText = "Electrical potential between two points.**DEPRECATED** in *Version 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VolumeFluidDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VolumeFluidDataItem.g.cs index 422e1649..babdce32 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VolumeFluidDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VolumeFluidDataItem.g.cs @@ -10,7 +10,7 @@ public class VolumeFluidDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLUME_FLUID"; - public const string NameId = ""; + public const string NameId = "volumeFluid"; public const string DefaultUnits = Devices.Units.MILLILITER; public new const string DescriptionText = "Fluid volume of an object or container."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/VolumeSpatialDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/VolumeSpatialDataItem.g.cs index ac59dfd8..f5e576b3 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/VolumeSpatialDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/VolumeSpatialDataItem.g.cs @@ -10,7 +10,7 @@ public class VolumeSpatialDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "VOLUME_SPATIAL"; - public const string NameId = ""; + public const string NameId = "volumeSpatial"; public const string DefaultUnits = Devices.Units.CUBIC_MILLIMETER; public new const string DescriptionText = "Geometric volume of an object or container."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/WaitStateDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/WaitStateDataItem.g.cs index 32084e27..8133c7b0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/WaitStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/WaitStateDataItem.g.cs @@ -10,7 +10,7 @@ public class WaitStateDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "WAIT_STATE"; - public const string NameId = ""; + public const string NameId = "waitState"; public new const string DescriptionText = "Indication of the reason that Execution is reporting a value of `WAIT`."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/WattageDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/WattageDataItem.g.cs index d6a29920..267e2bd0 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/WattageDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/WattageDataItem.g.cs @@ -10,7 +10,7 @@ public class WattageDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "WATTAGE"; - public const string NameId = ""; + public const string NameId = "wattage"; public const string DefaultUnits = Devices.Units.WATT; public new const string DescriptionText = "Power flowing through or dissipated by an electrical circuit or piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/WireDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/WireDataItem.g.cs index d3e15241..92310791 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/WireDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/WireDataItem.g.cs @@ -10,7 +10,7 @@ public class WireDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "WIRE"; - public const string NameId = ""; + public const string NameId = "wire"; public new const string DescriptionText = "Identifier for the type of wire used as the cutting mechanism in Electrical Discharge Machining or similar processes."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetDataItem.g.cs index bbe47f08..90ef5e4a 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetDataItem.g.cs @@ -10,7 +10,7 @@ public class WorkOffsetDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "WORK_OFFSET"; - public const string NameId = ""; + public const string NameId = "workOffset"; public new const string DescriptionText = "Reference to offset variables for a work piece or part."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetsDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetsDataItem.g.cs index 375f1a58..54b16bea 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetsDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/WorkOffsetsDataItem.g.cs @@ -10,7 +10,7 @@ public class WorkOffsetsDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "WORK_OFFSETS"; - public const string NameId = ""; + public const string NameId = "workOffsets"; public new const string DescriptionText = "Properties of each addressable work offset."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/WorkholdingIdDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/WorkholdingIdDataItem.g.cs index 56e46663..c78ce7b8 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/WorkholdingIdDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/WorkholdingIdDataItem.g.cs @@ -10,7 +10,7 @@ public class WorkholdingIdDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "WORKHOLDING_ID"; - public const string NameId = ""; + public const string NameId = "workholdingId"; public new const string DescriptionText = "Identifier for the current workholding or part clamp in use by a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/XDimensionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/XDimensionDataItem.g.cs index ef51b983..af8f8bcd 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/XDimensionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/XDimensionDataItem.g.cs @@ -10,7 +10,7 @@ public class XDimensionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "X_DIMENSION"; - public const string NameId = ""; + public const string NameId = "xDimension"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Dimension of an entity relative to the X direction of the referenced coordinate system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/YDimensionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/YDimensionDataItem.g.cs index 541d8b95..4da865cc 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/YDimensionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/YDimensionDataItem.g.cs @@ -10,7 +10,7 @@ public class YDimensionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "Y_DIMENSION"; - public const string NameId = ""; + public const string NameId = "yDimension"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Dimension of an entity relative to the Y direction of the referenced coordinate system."; diff --git a/src/MTConnect.NET-Common/Devices/DataItems/ZDimensionDataItem.g.cs b/src/MTConnect.NET-Common/Devices/DataItems/ZDimensionDataItem.g.cs index c0e15b93..0312a602 100644 --- a/src/MTConnect.NET-Common/Devices/DataItems/ZDimensionDataItem.g.cs +++ b/src/MTConnect.NET-Common/Devices/DataItems/ZDimensionDataItem.g.cs @@ -10,7 +10,7 @@ public class ZDimensionDataItem : DataItem { public const DataItemCategory CategoryId = DataItemCategory.SAMPLE; public const string TypeId = "Z_DIMENSION"; - public const string NameId = ""; + public const string NameId = "zDimension"; public const string DefaultUnits = Devices.Units.MILLIMETER; public new const string DescriptionText = "Dimension of an entity relative to the Z direction of the referenced coordinate system."; diff --git a/src/MTConnect.NET-Common/Interfaces/CloseChuckDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/CloseChuckDataItem.g.cs index e9fe4c46..4c29359c 100644 --- a/src/MTConnect.NET-Common/Interfaces/CloseChuckDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/CloseChuckDataItem.g.cs @@ -12,7 +12,7 @@ public class CloseChuckDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CLOSE_CHUCK"; - public const string NameId = ""; + public const string NameId = "closeChuck"; public new const string DescriptionText = "Operating state of the service to close a chuck."; diff --git a/src/MTConnect.NET-Common/Interfaces/CloseDoorDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/CloseDoorDataItem.g.cs index 58e43cac..3f0e6de2 100644 --- a/src/MTConnect.NET-Common/Interfaces/CloseDoorDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/CloseDoorDataItem.g.cs @@ -12,7 +12,7 @@ public class CloseDoorDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "CLOSE_DOOR"; - public const string NameId = ""; + public const string NameId = "closeDoor"; public new const string DescriptionText = "Operating state of the service to close a door."; diff --git a/src/MTConnect.NET-Common/Interfaces/InterfaceStateDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/InterfaceStateDataItem.g.cs index c331d267..92d84a38 100644 --- a/src/MTConnect.NET-Common/Interfaces/InterfaceStateDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/InterfaceStateDataItem.g.cs @@ -12,7 +12,7 @@ public class InterfaceStateDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "INTERFACE_STATE"; - public const string NameId = ""; + public const string NameId = "interfaceState"; public new const string DescriptionText = "Operational state of an Interface."; diff --git a/src/MTConnect.NET-Common/Interfaces/MaterialChangeDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/MaterialChangeDataItem.g.cs index 8602bd01..eec453eb 100644 --- a/src/MTConnect.NET-Common/Interfaces/MaterialChangeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/MaterialChangeDataItem.g.cs @@ -12,7 +12,7 @@ public class MaterialChangeDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL_CHANGE"; - public const string NameId = ""; + public const string NameId = "materialChange"; public new const string DescriptionText = "Operating state of the service to change the type of material or product being loaded or fed to a piece of equipment."; diff --git a/src/MTConnect.NET-Common/Interfaces/MaterialFeedDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/MaterialFeedDataItem.g.cs index ffb454d5..ca0021dd 100644 --- a/src/MTConnect.NET-Common/Interfaces/MaterialFeedDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/MaterialFeedDataItem.g.cs @@ -12,7 +12,7 @@ public class MaterialFeedDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL_FEED"; - public const string NameId = ""; + public const string NameId = "materialFeed"; public new const string DescriptionText = "Operating state of the service to advance material or feed product to a piece of equipment from a continuous or bulk source."; diff --git a/src/MTConnect.NET-Common/Interfaces/MaterialLoadDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/MaterialLoadDataItem.g.cs index 71c5dc5b..a553b947 100644 --- a/src/MTConnect.NET-Common/Interfaces/MaterialLoadDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/MaterialLoadDataItem.g.cs @@ -12,7 +12,7 @@ public class MaterialLoadDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL_LOAD"; - public const string NameId = ""; + public const string NameId = "materialLoad"; public new const string DescriptionText = "Operating state of the service to load a piece of material or product."; diff --git a/src/MTConnect.NET-Common/Interfaces/MaterialRetractDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/MaterialRetractDataItem.g.cs index 8a13b6e2..3b74b3bc 100644 --- a/src/MTConnect.NET-Common/Interfaces/MaterialRetractDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/MaterialRetractDataItem.g.cs @@ -12,7 +12,7 @@ public class MaterialRetractDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL_RETRACT"; - public const string NameId = ""; + public const string NameId = "materialRetract"; public new const string DescriptionText = "Operating state of the service to remove or retract material or product."; diff --git a/src/MTConnect.NET-Common/Interfaces/MaterialUnloadDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/MaterialUnloadDataItem.g.cs index 4483fd29..95bc50f4 100644 --- a/src/MTConnect.NET-Common/Interfaces/MaterialUnloadDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/MaterialUnloadDataItem.g.cs @@ -12,7 +12,7 @@ public class MaterialUnloadDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "MATERIAL_UNLOAD"; - public const string NameId = ""; + public const string NameId = "materialUnload"; public new const string DescriptionText = "Operating state of the service to unload a piece of material or product."; diff --git a/src/MTConnect.NET-Common/Interfaces/OpenChuckDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/OpenChuckDataItem.g.cs index bf7183f9..4770cf13 100644 --- a/src/MTConnect.NET-Common/Interfaces/OpenChuckDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/OpenChuckDataItem.g.cs @@ -12,7 +12,7 @@ public class OpenChuckDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "OPEN_CHUCK"; - public const string NameId = ""; + public const string NameId = "openChuck"; public new const string DescriptionText = "Operating state of the service to open a chuck."; diff --git a/src/MTConnect.NET-Common/Interfaces/OpenDoorDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/OpenDoorDataItem.g.cs index 71d26db3..d92f05a7 100644 --- a/src/MTConnect.NET-Common/Interfaces/OpenDoorDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/OpenDoorDataItem.g.cs @@ -12,7 +12,7 @@ public class OpenDoorDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "OPEN_DOOR"; - public const string NameId = ""; + public const string NameId = "openDoor"; public new const string DescriptionText = "Operating state of the service to open a door."; diff --git a/src/MTConnect.NET-Common/Interfaces/PartChangeDataItem.g.cs b/src/MTConnect.NET-Common/Interfaces/PartChangeDataItem.g.cs index 077f479d..0a54ae0c 100644 --- a/src/MTConnect.NET-Common/Interfaces/PartChangeDataItem.g.cs +++ b/src/MTConnect.NET-Common/Interfaces/PartChangeDataItem.g.cs @@ -12,7 +12,7 @@ public class PartChangeDataItem : InterfaceDataItem { public const DataItemCategory CategoryId = DataItemCategory.EVENT; public const string TypeId = "PART_CHANGE"; - public const string NameId = ""; + public const string NameId = "partChange"; public new const string DescriptionText = "Operating state of the service to change the part or product associated with a piece of equipment to a different part or product.";