OrganizationCustomSkillFileMetadata
Properties
| Property | Type | Required | Description |
content_type |
string |
Yes |
|
created_at |
string |
Yes |
|
id |
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": [
"id",
"revision_id",
"relative_path",
"content_type",
"size_bytes",
"sha256",
"is_text",
"created_at"
],
"properties": {
"content_type": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"id": {
"type": "string",
"format": "uuid"
},
"is_text": {
"type": "boolean"
},
"relative_path": {
"type": "string"
},
"revision_id": {
"type": "string",
"format": "uuid"
},
"sha256": {
"type": "string"
},
"size_bytes": {
"type": "integer",
"format": "int64"
}
}
}