chore: bump libre-graph-api-go

This commit is contained in:
Ralf Haferkamp
2024-09-23 10:49:49 +02:00
committed by Ralf Haferkamp
parent 10a67114f1
commit fa023ab43a
31 changed files with 284 additions and 79 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ type AppRole struct {
// Display name for the permission that appears in the app role assignment and consent experiences.
DisplayName NullableString `json:"displayName,omitempty"`
// Unique role identifier inside the appRoles collection. When creating a new app role, a new GUID identifier must be provided.
Id string `json:"id"`
Id string `json:"id" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"`
}
type _AppRole AppRole