This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/schema/metadata/app/regExpPatterns.json
T
Yuri Kuznetsov 5023a58cc1 schema
2023-05-27 13:59:52 +03:00

22 lines
781 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/regExpPatterns.json",
"title": "app/regExpPatterns",
"description": "Predefined regular expression patterns. Predefined patterns can be used for field validation.",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "A pattern name.",
"properties": {
"pattern": {
"type": "string",
"description": "A regular expression pattern."
},
"isSystem": {
"type": "boolean",
"description": "If true, the pattern won't be available when defining a validation for a field."
}
}
}
}