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

Don't merge #195

Open
wants to merge 12 commits into
base: release
Choose a base branch
from
48 changes: 42 additions & 6 deletions api-spec/openapiSpecv3-2_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,40 @@
"Authentication",
"9.0.0.cl"
],
"parameters": [],
"parameters": [
{
"name": "Accept",
"in": "header",
"description": "'",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"enum": [
"application/json",
"image/png",
"application/octet-stream",
]
},
"example": "application/json"
}
],
"responses": {
"200": {
"description": "Fetch current session user detail successful.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User"
}
"schema": {
"$ref": "#/components/schemas/User"
}
},
"image/png": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"description": "Invalid request.",
Expand Down Expand Up @@ -237,7 +260,7 @@
"type": "object",
"properties": {
"user_identifier": {
"description": "GUID / name of the user to search",
"description": "GUID / name of the user for searching",
"type": "string"
},
"display_name": {
Expand Down Expand Up @@ -3956,6 +3979,7 @@
"Authentication",
"10.4.0.cl"
],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
Expand Down Expand Up @@ -3996,6 +4020,19 @@
"RESET"
]
},
"reset_option": {
"description": "Granular control of Reset option in persist_option attribute configuration.",
"type": "array",
"items": {
"type": "string",
"enum": [
"FILTER_RULES",
"PARAMETERS",
"GROUPS"
]
},
"uniqueItems": true
},
"filter_rules": {
"description": "Filter rules.",
"type": "array",
Expand Down Expand Up @@ -4048,7 +4085,6 @@
},
"required": true
},
"parameters": [],
"responses": {
"200": {
"description": "ABAC token creation was successful.",
Expand Down