Otter · Schema

FulfilledCredential

FulfilledCredential schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
key string The key of the credential.
value string The value of the credential.
View JSON Schema on GitHub

JSON Schema

public-api-fulfilled-credential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FulfilledCredential",
  "description": "FulfilledCredential schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-fulfilled-credential-schema.json",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The key of the credential.",
      "example": "userEmail"
    },
    "value": {
      "type": "string",
      "description": "The value of the credential.",
      "example": "[email protected]"
    }
  },
  "required": [
    "key",
    "value"
  ]
}