Is your feature request related to a problem? Please describe.
Today the Bicep compiler/Graph type loader emits an error for unrecognized properties. This is undesirable behaviour. See solution for why this is undesirable.
Describe the solution you'd like
Bicep compiler/Graph type loader should emits a warning for unrecognized properties. This approach is more desirable as:
It would let users work with these properties while awaiting a new type package release.
It's consistent with behaviour for Azure resources where warnings are emitted rather than errors for resource type issues.
This would allow private preview hidden properties to pass through to Microsoft Graph, enabling Graph Bicep to be used for private preview scenarios (for existing resource types with private preview properties).
Is your feature request related to a problem? Please describe. Today the Bicep compiler/Graph type loader emits an error for unrecognized properties. This is undesirable behaviour. See solution for why this is undesirable.
Describe the solution you'd like Bicep compiler/Graph type loader should emits a warning for unrecognized properties. This approach is more desirable as:
Additional context NA