OrganizationCustomSkillFileContent
Properties
| Property | Type | Required | Description |
content_base64 |
string |
Yes |
|
content_type |
string |
Yes |
|
is_text |
boolean |
Yes |
|
relative_path |
string |
Yes |
|
revision_id |
string |
Yes |
|
sha256 |
string |
Yes |
|
size_bytes |
integer |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"revision_id",
"relative_path",
"content_type",
"size_bytes",
"sha256",
"content_base64",
"is_text"
],
"properties": {
"content_base64": {
"type": "string"
},
"content_type": {
"type": "string"
},
"is_text": {
"type": "boolean"
},
"relative_path": {
"type": "string"
},
"revision_id": {
"type": "string",
"format": "uuid"
},
"sha256": {
"type": "string"
},
"size_bytes": {
"type": "integer",
"format": "int64"
}
}
}