You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/files-images-overview.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Dataverse provides several different ways to save binary data representing files
35
35
36
36
## Block certain types of files
37
37
38
-
You can block the types of files that can be uploaded by the extension or mime type.
38
+
You can block the types of files that can be uploaded by the extension or MIME type.
39
39
40
40
### Block files by extension
41
41
@@ -111,9 +111,9 @@ When anyone tries to upload a file using one of the blocked types, the following
111
111
> Number: `-2147205623`<br />
112
112
> Message: `The attachment is either not a valid type or is too large. It cannot be uploaded or downloaded.`
113
113
114
-
### Block or allow certain mime types
114
+
### Block or allow certain MIME types
115
115
116
-
You can block or allow upload of files based on mime types. More Information: [Mime Type Validation](/power-platform/admin/settings-privacy-security#mime-type-validation).
116
+
You can block or allow upload of files based on MIME types. More Information: [Mime Type Validation](/power-platform/admin/settings-privacy-security#mime-type-validation).
117
117
118
118
You can also query and modify this data programmatically. It's stored in the [Organization.BlockedMimeTypes](reference/entities/organization.md#BKMK_BlockedMimeTypes) and [Organization.AllowedMimeTypes](reference/entities/organization.md#BKMK_AllowedMimeTypes) columns. There's only one row in the organization table. You can use the SDK or Web API to query this data:
119
119
@@ -165,15 +165,15 @@ OData-Version: 4.0
165
165
}
166
166
```
167
167
168
-
If `allowedmimetypes` is set, `blockedmimetypes` is ignored. Only the mime types specified in `allowedmimetypes` are allowed.
168
+
If `allowedmimetypes` is set, `blockedmimetypes` is ignored. Only the MIME types specified in `allowedmimetypes` are allowed.
169
169
170
-
If `blockedmimetypes` isn't empty and `allowedmimetypes` is empty, the following error occurs when someone tries to upload a mime type that is in blocked mime types:
170
+
If `blockedmimetypes` isn't empty and `allowedmimetypes` is empty, the following error occurs when someone tries to upload a MIME type that is in blocked MIME types:
171
171
172
172
> Name: `MimeTypeBlocked`<br />
173
173
> Code: `0x80072522`<br />
174
174
> Message: `Operation not allowed as mime type image/svg+xml is blocked.`
175
175
176
-
If `allowedmimetypes` isn't empty, the following error occurs when someone tries to upload a mime type that isn't in `allowedmimetypes`:
176
+
If `allowedmimetypes` isn't empty, the following error occurs when someone tries to upload a MIME type that isn't in `allowedmimetypes`:
0 commit comments