For the complete documentation index, see llms.txt. This page is also available as Markdown.

Category

The Category Object enables the operator to add, view, or delete a category object.

Field
Type
Description

id

string

The ID of the category object.

name

string

Name of the category object.

description

string

A description of the category object.

status

enum

Indicates the status of the category. Allowed values are active or disabled.

revision

integer

The revision number of the category.

audit

object

Represents the audit object.

Example

CATEGORY OBJECT
 {
    "id": "EXC-0001",
    "name": "Automotive",
    "revision": 1,
    "description": "Build a solid foundation with the support of workplace specialists who take the time to understand your unique business needs.",
    "status": "Active",
    "audit": {
     "created": { "at": "...", "by": { } },
     "updated": { "at": "...", "by": { } }
   }
 }

Last updated

Was this helpful?