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

Update apiDefinition.swagger.json #3617

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@
}
}
},
"summary": "Check for valid email format",
"summary": "Check for valid email format (deprecated)",
"operationId": "ValidEmail",
"description": "This action checks whether entered text is in a valid email format",
"description": "This action checks whether entered text is in a valid email format (deprecated)",
"x-ms-visibility": "important",
"deprecated": true,
"parameters": [
{
"name": "email",
Expand Down Expand Up @@ -107,10 +108,11 @@
}
}
},
"summary": "Check for valid GUID format",
"description": "This action checks whether entered text is in a valid GUID format",
"summary": "Check for valid GUID format (deprecated)",
"description": "This action checks whether entered text is in a valid GUID format (deprecated)",
"operationId": "ValidGUID",
"x-ms-visibility": "advanced",
"deprecated": true,
"parameters": [
{
"name": "guid",
Expand Down Expand Up @@ -157,10 +159,11 @@
"schema": {}
}
},
"summary": "Check whether text contains digit",
"summary": "Check whether text contains digit (deprecated)",
"operationId": "ContainsDigit",
"description": "This action checks whether entered text contains a digit anywhere",
"description": "This action checks whether entered text contains a digit anywhere (deprecated)",
"x-ms-visibility": "important",
"deprecated": true,
"parameters": [
{
"name": "text",
Expand Down Expand Up @@ -213,10 +216,11 @@
}
}
},
"summary": "Check whether text starts with a specified character",
"summary": "Check whether text starts with a specified character (deprecated)",
"operationId": "StartsWith",
"description": "This action checks whether entered text starts with a specified character",
"description": "This action checks whether entered text starts with a specified character (deprecated)",
"x-ms-visibility": "important",
"deprecated": true,
"parameters": [
{
"name": "text",
Expand Down Expand Up @@ -269,9 +273,10 @@
}
},
"operationId": "RegexPattern",
"summary": "Check whether text matches the specified pattern",
"description": "This action checks whether entered text matches the specified pattern",
"summary": "Check whether text matches the specified pattern (deprecated)",
"description": "This action checks whether entered text matches the specified pattern (deprecated)",
"x-ms-visibility": "important",
"deprecated": true,
"parameters": [
{
"name": "text",
Expand Down Expand Up @@ -325,9 +330,10 @@
}
},
"operationId": "EndsWith",
"description": "This action checks whether entered text ends with a specified character",
"summary": "Check whether text ends with a specified character",
"description": "This action checks whether entered text ends with a specified character (deprecated)",
"summary": "Check whether text ends with a specified character (deprecated)",
"x-ms-visibility": "important",
"deprecated": true,
"parameters": [
{
"name": "text",
Expand Down Expand Up @@ -380,9 +386,10 @@
}
},
"operationId": "ValidSSN",
"summary": "Check whether text is in valid US Social Security Number format",
"description": "This action checks whether entered text matches the US Social Security Number format",
"summary": "Check whether text is in valid US Social Security Number format (deprecated)",
"description": "This action checks whether entered text matches the US Social Security Number format (deprecated)",
"x-ms-visibility": "important",
"deprecated": true,
"parameters": [
{
"name": "ssn",
Expand Down Expand Up @@ -427,8 +434,9 @@
},
"operationId": "ValidCreditCard",
"x-ms-visibility": "important",
"description": "This action checks whether input text is a valid credit card number",
"summary": "Check whether text is a valid credit card number",
"description": "This action checks whether input text is a valid credit card number (deprecated)",
"summary": "Check whether text is a valid credit card number (deprecated)",
"deprecated": true,
"parameters": [
{
"name": "card_number",
Expand Down