OrganizationCustomSkillRevisionSummary
Properties
| Property | Type | Required | Description |
bundle_artifact_key |
string,null |
No |
|
bundle_sha256 |
string |
Yes |
|
bundle_size_bytes |
integer |
Yes |
|
created_at |
string |
Yes |
|
created_by_user_id |
string,null |
No |
|
description |
string,null |
No |
|
file_count |
integer |
Yes |
|
id |
string |
Yes |
|
organization_custom_skill_id |
string |
Yes |
|
organization_id |
string |
Yes |
|
published_at |
string,null |
No |
|
revision_number |
integer |
Yes |
|
status |
OrganizationCustomSkillRevisionStatus |
Yes |
|
title |
string,null |
No |
|
View JSON Schema
{
"type": "object",
"required": [
"id",
"organization_custom_skill_id",
"organization_id",
"revision_number",
"status",
"bundle_sha256",
"bundle_size_bytes",
"file_count",
"created_at"
],
"properties": {
"bundle_artifact_key": {
"type": [
"string",
"null"
]
},
"bundle_sha256": {
"type": "string"
},
"bundle_size_bytes": {
"type": "integer",
"format": "int64"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"created_by_user_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"description": {
"type": [
"string",
"null"
]
},
"file_count": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "string",
"format": "uuid"
},
"organization_custom_skill_id": {
"type": "string",
"format": "uuid"
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"published_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"revision_number": {
"type": "integer",
"format": "int64"
},
"status": {
"$ref": "#/components/schemas/OrganizationCustomSkillRevisionStatus"
},
"title": {
"type": [
"string",
"null"
]
}
}
}