Skip to content

Commit

Permalink
fixed a bug prevent valid base64 data from being valid in JSON. This …
Browse files Browse the repository at this point in the history
…was previosuly fixed for XML.
  • Loading branch information
david-waltermire committed Mar 9, 2023
1 parent 5108c72 commit 2ea69e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/json/metaschema-datatypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"Base64Datatype": {
"description": "Binary data encoded using the Base 64 encoding algorithm as defined by RFC4648.",
"type": "string",
"pattern": "^[0-9A-Za-z+/]+$",
"pattern": "^[0-9A-Za-z+/]+={0,2}$",
"contentEncoding": "base64"
},
"BooleanDatatype": {
Expand Down

0 comments on commit 2ea69e7

Please sign in to comment.