|
8745 | 8745 | "schema" : { |
8746 | 8746 | "type" : "string" |
8747 | 8747 | } |
| 8748 | + }, { |
| 8749 | + "name" : "subGroupsCount", |
| 8750 | + "in" : "query", |
| 8751 | + "description" : "Boolean which defines whether to return the count of subgroups for each group (default: true", |
| 8752 | + "schema" : { |
| 8753 | + "default" : "true", |
| 8754 | + "type" : "boolean" |
| 8755 | + } |
8748 | 8756 | } ], |
8749 | 8757 | "responses" : { |
8750 | 8758 | "200" : { |
|
8942 | 8950 | "schema" : { |
8943 | 8951 | "type" : "string" |
8944 | 8952 | } |
| 8953 | + }, { |
| 8954 | + "name" : "subGroupsCount", |
| 8955 | + "in" : "query", |
| 8956 | + "description" : "Boolean which defines whether to return the count of subgroups for each subgroup of this group (default: true", |
| 8957 | + "schema" : { |
| 8958 | + "default" : "true", |
| 8959 | + "type" : "boolean" |
| 8960 | + } |
8945 | 8961 | } ], |
8946 | 8962 | "responses" : { |
8947 | 8963 | "200" : { |
|
10479 | 10495 | } |
10480 | 10496 | } ] |
10481 | 10497 | }, |
| 10498 | + "/admin/realms/{realm}/organizations/count" : { |
| 10499 | + "get" : { |
| 10500 | + "tags" : [ "Organizations" ], |
| 10501 | + "summary" : "Returns the organizations counts.", |
| 10502 | + "parameters" : [ { |
| 10503 | + "name" : "exact", |
| 10504 | + "in" : "query", |
| 10505 | + "description" : "Boolean which defines whether the param 'search' must match exactly or not", |
| 10506 | + "schema" : { |
| 10507 | + "type" : "boolean" |
| 10508 | + } |
| 10509 | + }, { |
| 10510 | + "name" : "q", |
| 10511 | + "in" : "query", |
| 10512 | + "description" : "A query to search for custom attributes, in the format 'key1:value2 key2:value2'", |
| 10513 | + "schema" : { |
| 10514 | + "type" : "string" |
| 10515 | + } |
| 10516 | + }, { |
| 10517 | + "name" : "search", |
| 10518 | + "in" : "query", |
| 10519 | + "description" : "A String representing either an organization name or domain", |
| 10520 | + "schema" : { |
| 10521 | + "type" : "string" |
| 10522 | + } |
| 10523 | + } ], |
| 10524 | + "responses" : { |
| 10525 | + "200" : { |
| 10526 | + "description" : "OK", |
| 10527 | + "content" : { |
| 10528 | + "application/json" : { |
| 10529 | + "schema" : { |
| 10530 | + "format" : "int64", |
| 10531 | + "type" : "integer" |
| 10532 | + } |
| 10533 | + } |
| 10534 | + } |
| 10535 | + } |
| 10536 | + } |
| 10537 | + }, |
| 10538 | + "parameters" : [ { |
| 10539 | + "name" : "realm", |
| 10540 | + "in" : "path", |
| 10541 | + "description" : "realm name (not id!)", |
| 10542 | + "required" : true, |
| 10543 | + "schema" : { |
| 10544 | + "type" : "string" |
| 10545 | + } |
| 10546 | + } ] |
| 10547 | + }, |
10482 | 10548 | "/admin/realms/{realm}/organizations/members/{member-id}/organizations" : { |
10483 | 10549 | "get" : { |
10484 | 10550 | "tags" : [ "Organizations" ], |
|
10490 | 10556 | "schema" : { |
10491 | 10557 | "type" : "string" |
10492 | 10558 | } |
| 10559 | + }, { |
| 10560 | + "name" : "briefRepresentation", |
| 10561 | + "in" : "query", |
| 10562 | + "description" : "if false, return the full representation. Otherwise, only the basic fields are returned.", |
| 10563 | + "schema" : { |
| 10564 | + "default" : true, |
| 10565 | + "type" : "boolean" |
| 10566 | + } |
10493 | 10567 | } ], |
10494 | 10568 | "responses" : { |
10495 | 10569 | "200" : { |
|
10555 | 10629 | }, |
10556 | 10630 | "400" : { |
10557 | 10631 | "description" : "Bad Request" |
| 10632 | + }, |
| 10633 | + "409" : { |
| 10634 | + "description" : "Conflict" |
10558 | 10635 | } |
10559 | 10636 | } |
10560 | 10637 | }, |
|
11045 | 11122 | "schema" : { |
11046 | 11123 | "type" : "string" |
11047 | 11124 | } |
| 11125 | + }, { |
| 11126 | + "name" : "briefRepresentation", |
| 11127 | + "in" : "query", |
| 11128 | + "description" : "if false, return the full representation. Otherwise, only the basic fields are returned.", |
| 11129 | + "schema" : { |
| 11130 | + "default" : true, |
| 11131 | + "type" : "boolean" |
| 11132 | + } |
11048 | 11133 | } ], |
11049 | 11134 | "responses" : { |
11050 | 11135 | "200" : { |
|
15181 | 15266 | "type" : "string" |
15182 | 15267 | }, |
15183 | 15268 | "configuration" : { |
15184 | | - "type" : "array" |
| 15269 | + "description" : "Configuration settings as a JSON object", |
| 15270 | + "type" : "object", |
| 15271 | + "additionalProperties" : true |
15185 | 15272 | } |
15186 | 15273 | } |
15187 | 15274 | }, |
|
15192 | 15279 | "type" : "string" |
15193 | 15280 | }, |
15194 | 15281 | "configuration" : { |
15195 | | - "type" : "array" |
| 15282 | + "description" : "Configuration settings as a JSON object", |
| 15283 | + "type" : "object", |
| 15284 | + "additionalProperties" : true |
15196 | 15285 | } |
15197 | 15286 | } |
15198 | 15287 | }, |
|
15930 | 16019 | "name" : { |
15931 | 16020 | "type" : "string" |
15932 | 16021 | }, |
| 16022 | + "description" : { |
| 16023 | + "type" : "string" |
| 16024 | + }, |
15933 | 16025 | "path" : { |
15934 | 16026 | "type" : "string" |
15935 | 16027 | }, |
|
16304 | 16396 | }, |
16305 | 16397 | "format" : { |
16306 | 16398 | "type" : "string" |
| 16399 | + }, |
| 16400 | + "keySize" : { |
| 16401 | + "format" : "int32", |
| 16402 | + "type" : "integer" |
| 16403 | + }, |
| 16404 | + "validity" : { |
| 16405 | + "format" : "int32", |
| 16406 | + "type" : "integer" |
16307 | 16407 | } |
16308 | 16408 | } |
16309 | 16409 | }, |
|
16399 | 16499 | "userProfileMetadata" : { |
16400 | 16500 | "$ref" : "#/components/schemas/UserProfileMetadata" |
16401 | 16501 | }, |
| 16502 | + "enabled" : { |
| 16503 | + "type" : "boolean" |
| 16504 | + }, |
16402 | 16505 | "self" : { |
16403 | 16506 | "type" : "string" |
16404 | 16507 | }, |
|
16409 | 16512 | "format" : "int64", |
16410 | 16513 | "type" : "integer" |
16411 | 16514 | }, |
16412 | | - "enabled" : { |
16413 | | - "type" : "boolean" |
16414 | | - }, |
16415 | 16515 | "totp" : { |
16416 | 16516 | "type" : "boolean" |
16417 | 16517 | }, |
|
17583 | 17683 | "type" : "string" |
17584 | 17684 | } |
17585 | 17685 | }, |
| 17686 | + "webAuthnPolicyPasswordlessPasskeysEnabled" : { |
| 17687 | + "type" : "boolean" |
| 17688 | + }, |
17586 | 17689 | "clientProfiles" : { |
17587 | 17690 | "$ref" : "#/components/schemas/ClientProfilesRepresentation" |
17588 | 17691 | }, |
|
18520 | 18623 | "userProfileMetadata" : { |
18521 | 18624 | "$ref" : "#/components/schemas/UserProfileMetadata" |
18522 | 18625 | }, |
| 18626 | + "enabled" : { |
| 18627 | + "type" : "boolean" |
| 18628 | + }, |
18523 | 18629 | "self" : { |
18524 | 18630 | "type" : "string" |
18525 | 18631 | }, |
|
18530 | 18636 | "format" : "int64", |
18531 | 18637 | "type" : "integer" |
18532 | 18638 | }, |
18533 | | - "enabled" : { |
18534 | | - "type" : "boolean" |
18535 | | - }, |
18536 | 18639 | "totp" : { |
18537 | 18640 | "type" : "boolean" |
18538 | 18641 | }, |
|
0 commit comments