Otter · Schema

ExistingCredential

ExistingCredential 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-existing-credential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ExistingCredential",
  "description": "ExistingCredential schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-existing-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"
  ]
}