Skip to content

Commit

Permalink
Increase allowed schema size to 4MiB
Browse files Browse the repository at this point in the history
  • Loading branch information
josephschorr committed Aug 3, 2023
1 parent 239abdd commit dbf36a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authzed/api/v1/schema_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ message ReadSchemaResponse {
message WriteSchemaRequest {
// The Schema containing one or more Object Definitions that will be written
// to the Permissions System.
string schema = 1 [ (validate.rules).string.max_bytes = 262144 ]; // 256KiB
string schema = 1 [ (validate.rules).string.max_bytes = 4194304 ]; // 4MiB
}

// WriteSchemaResponse is the resulting data after having written a Schema to
Expand Down

0 comments on commit dbf36a5

Please sign in to comment.