Files

11 lines
415 B
Go
Raw Permalink Normal View History

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