check_license
Verify license status and validity by providing a license key, hardware ID, and product details. Ensures proper license management and compliance.
Instructions
Check license status and validity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hardware_id | Yes | ||
license_key | Yes | ||
product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hardware_id": {
"minLength": 1,
"type": "string"
},
"license_key": {
"minLength": 1,
"type": "string"
},
"product": {
"minLength": 1,
"type": "string"
}
},
"required": [
"license_key",
"hardware_id",
"product"
],
"type": "object"
}