NGINX · JSON Structure

Plus Http Api Nginx License Object Structure

License and usage reporting status of NGINX Plus instance.

Type: Properties: 0
API GatewayCachingCloud NativeLoad BalancerOpen SourceReverse ProxyWeb Server

License is a JSON Structure definition published by NGINX. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "License",
  "description": "License and usage reporting status of NGINX Plus instance.\n",
  "members": {
    "eval": {
      "description": "Indicates whether NGINX Plus license is trial.",
      "type": "boolean",
      "readOnly": true,
      "example": false
    },
    "active_till": {
      "description": "The Unix timestamp of license expiration.",
      "type": "int32",
      "readOnly": true,
      "example": 0
    },
    "reporting": {
      "type": "object",
      "members": {
        "healthy": {
          "description": "Indicates whether the reporting state is still considered healthy despite recent failed attempts.",
          "type": "boolean",
          "readOnly": true,
          "example": false
        },
        "fails": {
          "description": "The number of failed reporting attempts, reset each time the usage report is successfully sent.",
          "type": "int32",
          "readOnly": true,
          "example": 0
        },
        "grace": {
          "description": "The number of seconds before traffic processing is stopped after unsuccessful report attempt.",
          "type": "int32",
          "readOnly": true,
          "example": 0
        },
        "uuid": {
          "description": "The ID of NGINX Plus instance in the UUID format.",
          "type": "string",
          "readOnly": true,
          "example": "example-uuid"
        }
      },
      "example": {}
    }
  },
  "example": {
    "eval": false,
    "active_till": 1749268757,
    "reporting": {
      "healthy": true,
      "fails": 2,
      "grace": 15551961,
      "uuid": "13754cba-29fb-53e5-c32e-a6cf57c84b01"
    }
  }
}