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 openapiSpecv3-2_0.json #160

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions api-playground/static/styles/overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,15 @@
font-weight: normal;
background: grey;
}
.rjsf-field-description code {
overflow: scroll !important;
}
.rjsf-field-description pre {
margin: 0px !important;
padding: 0px !important;
}

.rjsf-field-description pre div {
margin: 0px !important;
padding: 0px !important;
}
11 changes: 7 additions & 4 deletions api-spec/openapiSpecv3-2_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -3526,7 +3526,7 @@
}
},
"user_parameters": {
"description": "Define attributes such as Runtime filters and Runtime parameters to send security entitlements to a user session. For more information, see [Documentation](https://developers.thoughtspot.com/docs/abac-user-parameters).",
"description": "<div><span class=\"since-beta-tag\">Version: 9.10.5.cl or later</span></div>\n\nDefine attributes such as Runtime filters and Runtime parameters to send security entitlements to a user session. For more information, see [Documentation](https://developers.thoughtspot.com/docs/abac-user-parameters).",
"allOf": [
{
"$ref": "#/components/schemas/User_Parameter_Options"
Expand Down Expand Up @@ -3659,7 +3659,7 @@
}
},
"user_parameters": {
"description": "Define attributes such as Runtime filters and Runtime parameters to send security entitlements to a user session. For more information, see [Documentation](https://developers.thoughtspot.com/docs/abac-user-parameters).",
"description": "<div><span class=\"since-beta-tag\">Version: 9.10.5.cl or later</span></div>\n\nDefine attributes such as Runtime filters and Runtime parameters to send security entitlements to a user session. For more information, see [Documentation](https://developers.thoughtspot.com/docs/abac-user-parameters).",
"allOf": [
{
"$ref": "#/components/schemas/User_Parameter_Options"
Expand Down Expand Up @@ -7032,6 +7032,7 @@
},
"emails": {
"description": "Email IDs to which notifications will be sent.",
"default": [],
"type": "array",
"items": {
"type": "string"
Expand All @@ -7049,7 +7050,7 @@
},
"notify_on_share": {
"description": "Flag to notify user when any object is shared.",
"default": true,
"default": false,
"type": "boolean",
"nullable": true
},
Expand All @@ -7062,7 +7063,6 @@
},
"required": [
"permissions",
"emails",
"message"
]
}
Expand Down Expand Up @@ -13920,20 +13920,23 @@
"items": {
"$ref": "#/components/schemas/User_Runtime_Filters"
},
"description": "Objects to apply the User_Runtime_Filters.\n\nExamples to set the `runtime_filters` :\n```json\n{ \"column_name\": \"Color\", \"operator\": \"EQ\", \"values\": [\"red\"], \"persist\": false }\n```",
"nullable": true
},
"runtime_sorts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/User_Runtime_Sorts"
},
"description": "Objects to apply the User_Runtime_Sorts.\n\nExamples to set the `runtime_sorts` :\n```json\n{ \"column_name\": \"Color\", \"order\": \"ASC\", \"persist\": false }\n```",
"nullable": true
},
"parameters": {
"type": "array",
"items": {
"$ref": "#/components/schemas/User_Parameters"
},
"description": "Objects to apply the Runtime_Parameters.\n\nExamples to set the `parameters` :\n```json\n{ \"name\": \"Color\", \"values\": [\"Blue\"], \"persist\": false }\n```",
"nullable": true
}
},
Expand Down