SerenAI

Pay Per Call Agentic Commerce

OrganizationCustomSkill

Properties

PropertyTypeRequiredDescription
created_at string Yes
created_by_user_id string,null No
description string,null No
display_name string Yes
id string Yes
latest_revision any No
latest_revision_id string,null No
organization_id string Yes
published_revision any No
published_revision_id string,null No
slug string Yes
status OrganizationCustomSkillStatus Yes
updated_at string Yes
updated_by_user_id string,null No
View JSON Schema
{
  "type": "object",
  "required": [
    "id",
    "organization_id",
    "slug",
    "display_name",
    "status",
    "created_at",
    "updated_at"
  ],
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "created_by_user_id": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "display_name": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "latest_revision": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/OrganizationCustomSkillRevisionSummary"
        }
      ]
    },
    "latest_revision_id": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    },
    "organization_id": {
      "type": "string",
      "format": "uuid"
    },
    "published_revision": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/OrganizationCustomSkillRevisionSummary"
        }
      ]
    },
    "published_revision_id": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    },
    "slug": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/OrganizationCustomSkillStatus"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_by_user_id": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    }
  }
}