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

Variant

The Variant object represents a variant as an uploaded PDF or DOCX document or a link to an externally hosted document as an element of terms for a product.

This object contains the following attributes:

Field
Type
Description

id

string

(Read-only) A unique identifier for the terms variant.

type

string, core

The type of terms variant.

name

string, core

A name for the terms variant.

description

string, core

A description of the terms variant.

assetUrl

string, core

The URL of the uploaded document or online document/resource.

languageCode

string, core

The 2-digit language code for the terms item.

status

string, core

The status of the terms.

termsAndConditions

string

The terms to which the item has been assigned.

audit

object

(Read-only) Represents the audit object.

Example

VARIANT OBJECT
{
  "id": "TCS-1234-1234-1234-1234", 
  "name": "Terms and Conditions Variant - EN",
  "description": "Terms and Conditions Variant in English",
  "type": "Online",
  "assetUrl": "https://www.microsoft.com",
  "languageCode": "en",
  "state": "Draft",
  "termsAndConditions": {
    "id": "TCS-1234-1234-1234",    
    "name": "Microsoft 365 Terms of Service"
  },
  "audit": {
    "created": {
      "at": "2024-01-16T21:30:13.1046031",
      "by": {
        "id": "USR-0000-0001"
      }
    },
    "updated": null
  }
}

Last updated

Was this helpful?