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

Terms

The Terms object represents terms as a collection of uploaded PDF or DOCX documents or links to externally hosted documents as an element of an extension.

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

enum, core

The status of the terms. Allowed values are:

  • Draft

  • Published

  • Unpublished

  • Deleted

extension

object

The extension to which the terms item belongs.

audit

object

(Read-only) Represents the audit object.

Example

TERMS OBJECT
  {
  "id": "ETC-1234-1234-1234",
  "href": "/extensions/EXT-6822-9898-4256/terms/ETC-1234-1234-1234",
  "name": "Microsoft 365 Terms of Service",
  "description": "Description of Microsoft 365 Terms of Service",
  "displayOrder": 100,
  "state": "Draft",
  "extension": {
    "id": "EXT-6822-9898-4256",
    "href": "/extensions/EXT-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?