Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix two types (integer instead of number) in InformationProtectionPolicies.json #9053

Merged
merged 6 commits into from
Apr 20, 2020
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@
"readOnly": true,
"description": "Describes the last UTC time the policy was modified."
},
"version": {
"type": "string",
"readOnly": true,
"description": "Describes the version of the policy."
},
"labels": {
"type": "object",
"description": "Dictionary of sensitivity labels.",
Expand Down Expand Up @@ -254,8 +259,9 @@
}
},
"order": {
"type": "number",
"description": "The order of the sensitivity label."
"format": "int32",
"description": "The order of the sensitivity label.",
"type": "integer"
},
"enabled": {
"type": "boolean",
Expand All @@ -276,8 +282,9 @@
"description": "The description of the information type."
},
"order": {
"type": "number",
"description": "The order of the information type."
"format": "int32",
"description": "The order of the information type.",
"type": "integer"
},
"recommendedLabelId": {
"type": "string",
Expand Down