Otter · Schema

Store-3

Store-3 schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
name string The name of the store.
phone string The phone number to contact the store.
View JSON Schema on GitHub

JSON Schema

public-api-store-3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Store-3",
  "description": "Store-3 schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-3-schema.json",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "nullable": true,
      "description": "The name of the store.",
      "example": "Chipotle"
    },
    "phone": {
      "type": "string",
      "nullable": true,
      "description": "The phone number to contact the store.",
      "example": "+1-555-555-5555"
    }
  }
}