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

The business identifier of the terms.

Example: TCS-0001-0001

href

string

The resource URI of the terms.

Example: /programs/PRG-6822-9898-4256/terms/TCS-3159-1891-0980-8679

name

string

The name of the terms.

Example: Terms of Service

description

string

The description of the terms.

Example: Terms of Service description.

displayOrder

integer

The display order of the terms.

Example: 100

status

string

The status of the terms. Possible values: Draft, Published, Unpublished, or Published.

program

The program to which the term item belongs.

audit

audit

The audit information object.

Example:

{
  "created": { "at": "...", "by": { } },
  "updated": { "at": "...", "by": { } }
}

Example

{
  "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?