Skip to content

Commit

Permalink
Merge pull request #146 from QualiTorque/update-schema-labels
Browse files Browse the repository at this point in the history
fix env label types
  • Loading branch information
KateTretiak authored Jan 16, 2025
2 parents 11eddf6 + b031ef1 commit d8d7257
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions client/schemas/blueprint-spec2-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,15 @@
"items": {
"allOf": [
{
"$ref": "#/definitions/EnvironmentLabel"
"oneOf": [
{
"$ref": "#/definitions/EnvironmentLabel"
},
{
"type": "string",
"pattern": "^{?[a-zA-Z0-9-_.@#\\s]+}?$"
}
]
}
]
}
Expand All @@ -660,7 +668,15 @@
"items": {
"allOf": [
{
"$ref": "#/definitions/EnvironmentLabel"
"oneOf": [
{
"$ref": "#/definitions/EnvironmentLabel"
},
{
"type": "string",
"pattern": "^{?[a-zA-Z0-9-_.@#\\s]+}?$"
}
]
}
]
}
Expand Down

0 comments on commit d8d7257

Please sign in to comment.