Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Add underscore to pattern for fully qualified component name and handler name #72

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deployment_manifest_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"properties": {
"fullyQualifiedComponentName": {
"type": "string",
"pattern": "^[a-zA-Z]+[a-zA-Z0-9._-]*$"
"pattern": "^([a-zA-Z]|_[a-zA-Z0-9])[a-zA-Z0-9._-]*$"
},
"componentType": {
"title": "ComponentType",
Expand All @@ -39,7 +39,7 @@
"properties": {
"name": {
"type": "string",
"pattern": "^[a-zA-Z]+[a-zA-Z0-9_-]*$"
"pattern": "^([a-zA-Z]|_[a-zA-Z0-9])[a-zA-Z0-9_]*$"
},
"inputSchema": {},
"outputSchema": {}
Expand Down
Loading