missing-x-ms-identifiers
@azure-tools/typespec-azure-resource-manager/missing-x-ms-identifiers
Check that array properties have x-ms-identifiers
specified with @OpenAPI.extension
โ Incorrect
Section titled โโ Incorrectโmodel Address { city: string; street: string;}
model ResourceProperties { array: Address[];}
โ Correct
Section titled โโ Correctโmodel ResourceProperties { @OpenAPI.extension("x-ms-identifiers", ["city", "street"]) array: Address[];}