Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"noBadCharacters": {
"pattern": "[^<>=]+"
},
"noAsciiSpecialCharacters": {
"pattern": "[^`~!@#$%^&*()_+={}\\[\\]|\\\\:;\"'<,>.?]+"
},
"latinLetters": {
"pattern": "[A-Za-z]+"
},
"latinLettersDigits": {
"pattern": "[A-Za-z0-9]+"
},
"latinLettersDigitsWhitespace": {
"pattern": "[A-Za-z0-9 ]+"
},
"latinLettersWhitespace": {
"pattern": "[A-Za-z ]+"
},
"digits": {
"pattern": "[0-9]+"
},
"id": {
"pattern": "[A-Za-z0-9_=\\-\\.]+",
"isSystem": true
},
"phoneNumberLoose": {
"pattern": "[0-9A-Za-z_@:#\\+\\(\\)\\-\\. ]+",
"isSystem": true
},
"uriOptionalProtocol": {
"pattern": "([a-zA-Z0-9]+\\:\\/\\/)?[a-zA-Z0-9%\\.\\/\\?\\:@\\-_=#$!+*\\(\\)',]+\\.([a-zA-Z0-9%\\&\\.\\/\\?\\:@\\-_=#$!+*\\(\\)',~])*",
"isSystem": true
},
"uri": {
"pattern": "([a-zA-Z0-9]+\\:\\/\\/){1}[a-zA-Z0-9%\\.\\/\\?\\:@\\-_=#$!+*\\(\\)',]+\\.([a-zA-Z0-9%\\&\\.\\/\\?\\:@\\-_=#$!+*\\(\\)',~])*",
"isSystem": true
}
}