17fc813823
M1, M2 and M3 complete * M1, M2 and M3 complete * review changes * docs * docs
11 lines
415 B
Go
11 lines
415 B
Go
package customschema
|
|
|
|
// MaxSchemaDefinitionBytes caps the size of a JSON Schema definition document (64KB).
|
|
const MaxSchemaDefinitionBytes = 65536
|
|
|
|
// MaxMetadataPayloadBytes caps the size of a custom metadata JSON payload (1MB).
|
|
const MaxMetadataPayloadBytes = 1048576
|
|
|
|
// MaxBulkAssignDocuments caps the number of documents updated in a single bulk folder schema assignment.
|
|
const MaxBulkAssignDocuments = 10000
|