Advance Auto Parts · Schema

Store

An Advance Auto Parts retail store.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
id string Store identifier.
name string Store name.
address string Street address.
phone string Phone number.
hours string Business hours.
distance number Distance in miles.
View JSON Schema on GitHub

JSON Schema

catalog-api-store-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Store",
  "description": "An Advance Auto Parts retail store.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Store identifier.",
      "example": "store-001"
    },
    "name": {
      "type": "string",
      "description": "Store name.",
      "example": "Advance Auto Parts - Main St"
    },
    "address": {
      "type": "string",
      "description": "Street address.",
      "example": "123 Main St, Springfield, IL 62701"
    },
    "phone": {
      "type": "string",
      "description": "Phone number.",
      "example": "217-555-0100"
    },
    "hours": {
      "type": "string",
      "description": "Business hours."
    },
    "distance": {
      "type": "number",
      "description": "Distance in miles.",
      "example": 1.2
    }
  }
}