ItsaCheckmate · Schema

ActivationResult

Result of activating the token's location.

RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

Properties

Name Type Description
activated boolean Whether the location was activated.
location_id string Identifier of the activated location.
message string Human-readable activation message.
View JSON Schema on GitHub

JSON Schema

marketplace-api-activation-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/itsacheckmate/refs/heads/main/json-schema/marketplace-api-activation-result-schema.json",
  "title": "ActivationResult",
  "description": "Result of activating the token's location.",
  "type": "object",
  "properties": {
    "activated": {
      "type": "boolean",
      "description": "Whether the location was activated."
    },
    "location_id": {
      "type": "string",
      "description": "Identifier of the activated location."
    },
    "message": {
      "type": "string",
      "description": "Human-readable activation message."
    }
  }
}