Skip to content

Commit

Permalink
fixes #90 properly
Browse files Browse the repository at this point in the history
  • Loading branch information
DenizUgur committed Nov 8, 2024
1 parent 3699435 commit eb2afba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data/schemas/gpac-extension.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@Type": {
"type": "string",
"description": "fourcc of the box",
"pattern": "^[\\u0020-\\u007E]{4}$"
"pattern": "^[^\\x00-\\x1F\\x7F]{4}$"
},
"@Version": {
"anyOf": [
Expand Down Expand Up @@ -97,7 +97,7 @@
"properties": {
"location": {
"type": "string",
"pattern": "^file(?>\\.[\\u0020-\\u007E]{4})*$",
"pattern": "^file(?>\\.[^\\x00-\\x1F\\x7F]{4})*$",
"description": "Dot seperated location of the box in relation to the file"
},
"box": {
Expand Down
2 changes: 1 addition & 1 deletion data/schemas/gpac.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@Type": {
"type": "string",
"description": "fourcc of the box",
"pattern": "^[\\u0020-\\u007E]{4}$"
"pattern": "^[^\\x00-\\x1F\\x7F]{4}$"
},
"@Version": {
"anyOf": [
Expand Down

0 comments on commit eb2afba

Please sign in to comment.