AgentCredentialSecret
Properties
| Property | Type | Required | Description |
created_at |
string |
Yes |
|
created_by |
string,null |
No |
|
description |
string,null |
No |
|
id |
string |
Yes |
|
name |
string |
Yes |
|
organization_id |
string |
Yes |
|
owner_user_id |
string,null |
No |
|
scope |
AgentCredentialSecretScope |
Yes |
|
updated_at |
string |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"id",
"organization_id",
"name",
"scope",
"created_at",
"updated_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"created_by": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"description": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"owner_user_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"scope": {
"$ref": "#/components/schemas/AgentCredentialSecretScope"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
}
}