Supported Device Validation
Validation messages for device-related fields, covering the supported flag and device ID.
Overview
| Key | Message | Description |
|---|---|---|
NotNull.supportedDeviceDto.supported | サポートされているフラグはnullであってはなりません。 | The supported flag is null. |
NotNull.baseDeviceDto.id | デバイスIDが必要です。デバイスIDをご提供ください。 | The device ID is null. |
Positive.baseDeviceDto.id | デバイスIDは0より大きくなければなりません。有効なIDを入力してください。 | The device ID must be greater than 0; the provided value is 0 or less. |
Validation Message Details
NotNull.supportedDeviceDto.supported
Message
サポートされているフラグはnullであってはなりません。
Description
The supported flag is null.
Root Cause
- The
supportedfield was not included in the request.
Resolution
- Provide a boolean value for the
supportedfield.
NotNull.baseDeviceDto.id
Message
デバイスIDが必要です。デバイスIDをご提供ください。
Description
The device ID is null.
Root Cause
- The
idfield was not included in the device request.
Resolution
- Provide a valid device ID.
Positive.baseDeviceDto.id
Message
デバイスIDは0より大きくなければなりません。有効なIDを入力してください。
Description
The device ID must be greater than 0; the provided value is 0 or less.
Root Cause
- A
idvalue of 0 or a negative number was provided.
Resolution
- Enter a device ID greater than 0.