UpdateOrganizationCustomSkillRequest
Properties
| Property | Type | Required | Description |
description |
string,null |
No |
If omitted, leave unchanged. If null, clear. |
display_name |
string,null |
No |
|
status |
any |
No |
|
View JSON Schema
{
"type": "object",
"properties": {
"description": {
"type": [
"string",
"null"
],
"description": "If omitted, leave unchanged. If null, clear."
},
"display_name": {
"type": [
"string",
"null"
]
},
"status": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/OrganizationCustomSkillStatus"
}
]
}
}
}