Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(HMS-3152): remove pattern matching from location name #23

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion public.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,6 @@
"type": "string",
"maxLength": 63,
"minLength": 1,
"pattern": "^[a-z][a-z0-9\\-]*$",
"x-rh-ipa-hcc": {
"type": "defs"
},
Expand Down
2 changes: 1 addition & 1 deletion public.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -974,12 +974,12 @@ components:
type: defs
x-rh-rdn-value: name
LocationName:
# validation pattern was removed to not be more restrictive than IPA server
title: Location identifier (IPA location, AD site)
description: A location identifier (lower-case DNS label)
type: string
maxLength: 63
minLength: 1
pattern: ^[a-z][a-z0-9\-]*$
x-rh-ipa-hcc:
type: defs
example: alpha
Expand Down
Loading