Skip to content

Commit

Permalink
bugfix: pattern remove \S on user-ms opena api (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuraf authored Apr 12, 2024
1 parent 27ac8d4 commit 9134100
Showing 1 changed file with 154 additions and 17 deletions.
171 changes: 154 additions & 17 deletions connector/rest/docs/openapi/selfcare-user-docs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi" : "3.0.3",
"info" : {
"title" : "User API (development)",
"title" : "user-ms API",
"version" : "1.0.0"
},
"servers" : [ {
Expand Down Expand Up @@ -316,8 +316,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
},
"post" : {
"tags" : [ "User Controller" ],
Expand All @@ -341,8 +350,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/emails" : {
Expand Down Expand Up @@ -377,8 +395,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/ids" : {
Expand Down Expand Up @@ -408,8 +435,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/notification" : {
Expand Down Expand Up @@ -449,8 +485,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/search" : {
Expand Down Expand Up @@ -483,8 +528,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{id}" : {
Expand Down Expand Up @@ -521,8 +575,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{id}/details" : {
Expand Down Expand Up @@ -559,8 +622,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{id}/institution/{institutionId}/product/{productId}/status" : {
Expand Down Expand Up @@ -599,8 +671,17 @@
"responses" : {
"204" : {
"description" : "No Content"
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{id}/status" : {
Expand Down Expand Up @@ -651,8 +732,17 @@
"content" : {
"application/json" : { }
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{id}/user-registry" : {
Expand Down Expand Up @@ -688,8 +778,17 @@
"content" : {
"application/json" : { }
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{userId}" : {
Expand Down Expand Up @@ -719,8 +818,17 @@
"content" : {
"application/json" : { }
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{userId}/institution/{institutionId}" : {
Expand Down Expand Up @@ -797,8 +905,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{userId}/institutions" : {
Expand Down Expand Up @@ -838,8 +955,17 @@
}
}
}
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
},
"/users/{userId}/institutions/{institutionId}/products/{productId}" : {
Expand Down Expand Up @@ -871,8 +997,17 @@
"responses" : {
"204" : {
"description" : "No Content"
},
"403" : {
"description" : "Not Allowed"
},
"401" : {
"description" : "Not Authorized"
}
}
},
"security" : [ {
"SecurityScheme" : [ ]
} ]
}
}
},
Expand All @@ -895,6 +1030,9 @@
"institutionRootName" : {
"type" : "string"
},
"userMailUuid" : {
"type" : "string"
},
"hasToSendEmail" : {
"type" : "boolean"
}
Expand Down Expand Up @@ -1043,7 +1181,6 @@
"type" : "object",
"properties" : {
"fiscalCode" : {
"pattern" : "\\S",
"type" : "string"
}
}
Expand Down

0 comments on commit 9134100

Please sign in to comment.