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

Program Terms

The Program Terms object represents terms in the form of uploaded PDF or DOCX documents, as well as links to documents hosted externally.

This object contains the following attributes:

Field
Type
Description

id

string

(Read-only) The business identifier of the terms.

href

string

(Read-only) The resource URI of the terms.

name

string, core

The name of the terms.

description

string, core

A description of the terms.

displayOrder

integer, core

The display order of the terms.

status

string, core

The status of the terms. Allowed values are:

  • Draft

  • Published

  • Unpublished

  • Published

program

object

Represents the program to which the term item belongs.

audit

object

(Read-only) Represents the audit object.

Example

THE PROGRAM TERMS OBJECT
{
  "id": "TCS-3159-1891-0980-8679",
  "href": "/programs/PRG-6822-9898-4256/terms/TCS-3159-1891-0980-8679",
  "name": "Microsoft 365 Terms of Service",
  "description": "Description of Microsoft 365 Terms of Service",
  "displayOrder": 100,
  "state": "Draft",
  "program": {
    "id": "PRG-6822-9898-4256",
    "href": "/programs/PRG-6822-9898-4256",
    "name": "Microsoft AI Cloud Partner"
  },
  "audit": {
    "created": {
      "at": "2024-01-16T21:30:13.1046031",
      "by": {
        "id": "USR-0000-0001"
      }
    },
    "updated": null
  }
}

Last updated

Was this helpful?