ItsaCheckmate · Schema

TokenInfo

Introspection details for the current access token.

RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

Properties

Name Type Description
resource_owner_id string Identifier of the location that owns the token.
scope array Granted scopes.
expires_in integer Seconds remaining before the access token expires.
created_at integer Unix epoch seconds when the token was created.
View JSON Schema on GitHub

JSON Schema

marketplace-api-token-info-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-token-info-schema.json",
  "title": "TokenInfo",
  "description": "Introspection details for the current access token.",
  "type": "object",
  "properties": {
    "resource_owner_id": {
      "type": "string",
      "description": "Identifier of the location that owns the token."
    },
    "scope": {
      "type": "array",
      "description": "Granted scopes.",
      "items": {
        "type": "string"
      }
    },
    "expires_in": {
      "type": "integer",
      "description": "Seconds remaining before the access token expires."
    },
    "created_at": {
      "type": "integer",
      "description": "Unix epoch seconds when the token was created."
    }
  }
}