unsupported-types
@azure-tools/typespec-azure-core/unsupported-types
Check the ARM specification is not using types not supported in ARM.
Primitive types currently unsupported in ARM:
- int8
- int16
- uint8
- uint16
- uint32
- uint64
❌ Incorrect
model ResourceProperties { count: uint32;}
✅ Correct
model ResourceProperties { count: int32;}