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

Program Document

The Program Document object allows you to upload program documentation using an online link or file upload to the Program object.

This object contains the following attributes:

Field
Type
Description

id

string

(Read-only) The business identifier of the document object.

name

string

The name of the document object.

description

string

The description of the document object.

type

string

The type of the document object.

url

string

The URI to access the document object.

language

string

The document's language.

status

string

Represents the status of the document object.

program

object

Represents the program to which the document belongs.

audit

object

Represents the audit object.

Example

THE PROGRAM DOCUMENT OBJECT
 {
    "id": "PDM-1234-5678-0001",    
    "name": "Guide to establishing a reseller relationship",
    "description": "Learn what happens when you establish a reseller relationship with SoftwareOne",
    "type": "File",
    "url": "https://address.to.media.file.pl/abcde.docx",
    "language": "pl-pl",
    "state": "Draft",
    "program": {
      "id": "PRG-1234-5678",    
      "name": "Microsoft AI Cloud Partner",
      "icon": "/static/PRG-1234-1234/logo.png"
     },
    "audit": {
     "created": { "at": "...", "by": { } },
     "updated": { "at": "...", "by": { } }
   }
  }

Last updated

Was this helpful?