Skip to content

Commit

Permalink
Add underscore to pattern for fully qualified component name and hand…
Browse files Browse the repository at this point in the history
…ler name
  • Loading branch information
slinkydeveloper committed Mar 5, 2024
1 parent a999daf commit fd7eb24
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit fd7eb24

Please sign in to comment.