Skip to content

Commit

Permalink
fix regex copy paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasVHG committed Oct 29, 2024
1 parent dfc9d92 commit 8ace631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common-offer-contactPoint.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"items": {
"description": "Email address for contact purposes. Can be an empty string, if no e-mails are avaialble",
"type": "string",
"pattern": "^(|[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,})$"
"pattern": "^(|[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,})$"
}
},
"url": {
Expand All @@ -42,7 +42,7 @@
"items": {
"description": "URL to a website for contact purposes. Can be an empty string, if no urls are avaialble",
"type": "string",
"pattern": "^http[s]?:\\\\/\\\\/\\\\w|^$"
"pattern": "^http[s]?:\\/\\/\\w|^$"
}
}
},
Expand Down

0 comments on commit 8ace631

Please sign in to comment.