Skip to content

Commit

Permalink
Make environment pattern an exact match
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomboyo committed Dec 9, 2024
1 parent 9fbc178 commit fa1d7f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion swagger/openapi.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -3819,7 +3819,7 @@
"description": "An environment UUID.",
"type": "string",
"example": "262e621d10ae4475ab5732b39a9160b2, 01fd642e02de4e6da2da6172081a971e",
"pattern": "[0-9a-f]{32}"
"pattern": "^[0-9a-f]{32}$"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion swagger/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3686,7 +3686,7 @@
"description": "An environment UUID.",
"type": "string",
"example": "262e621d10ae4475ab5732b39a9160b2, 01fd642e02de4e6da2da6172081a971e",
"pattern": "[0-9a-f]{32}"
"pattern": "^[0-9a-f]{32}$"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion swagger/system_profile.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ $defs:
description: An environment UUID.
type: string
example: "262e621d10ae4475ab5732b39a9160b2, 01fd642e02de4e6da2da6172081a971e"
pattern: '[0-9a-f]{32}'
pattern: '^[0-9a-f]{32}$'
system_purpose:
description: Object for system purpose information
type: object
Expand Down

0 comments on commit fa1d7f3

Please sign in to comment.