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

Terms

The Terms object represents billing terms for a subscription within the Marketplace. This object contains the following fields:

Field
Type
Description

model

string

The billing model for the subscription. Allowed values are:

  • One-time

  • Usage

  • Quantity

period

string

The billing period applicable to the subscription. Allowed values are:

  • 1m - indicates monthly billing.

  • 1y - indicates annual billing.

  • one-time - indicates a one-time purchase.

commitment

string

The commitment or renewal period for the subscription.

  • <N>m - N months commitment

  • <N>y - N years commitment

Example

TERMS OBJECT
{
  "model": "quantity",
  "period": "1m",
  "commitment": "1y"
}

Last updated

Was this helpful?