OrganizationCustomSkillRevision
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 |
|
files |
Array<OrganizationCustomSkillFileMetadata> |
Yes |
|
frontmatter |
any |
Yes |
|
id |
string |
Yes |
|
manifest |
any |
Yes |
|
organization_custom_skill_id |
string |
Yes |
|
organization_id |
string |
Yes |
|
published_at |
string,null |
No |
|
revision_number |
integer |
Yes |
|
skill_md |
string |
Yes |
|
skill_md_sha256 |
string |
Yes |
|
status |
OrganizationCustomSkillRevisionStatus |
Yes |
|
title |
string,null |
No |
|
View JSON Schema
{
"type": "object",
"required": [
"id",
"organization_custom_skill_id",
"organization_id",
"revision_number",
"status",
"skill_md",
"skill_md_sha256",
"frontmatter",
"manifest",
"bundle_sha256",
"bundle_size_bytes",
"created_at",
"files"
],
"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"
]
},
"files": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrganizationCustomSkillFileMetadata"
}
},
"frontmatter": {},
"id": {
"type": "string",
"format": "uuid"
},
"manifest": {},
"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"
},
"skill_md": {
"type": "string"
},
"skill_md_sha256": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/OrganizationCustomSkillRevisionStatus"
},
"title": {
"type": [
"string",
"null"
]
}
}
}