Roundy's · Schema

Roundy's Store Data Schema

Schema for Roundy's grocery store data including Pick 'n Save, Metro Market, and Mariano's store locations, departments, services, and product catalog as surfaced through the Kroger Developer Platform APIs.

GroceryKrogerMidwestRetailSupermarketWisconsin

Properties

Name Type Description
stores array List of Roundy's store locations
products array Product catalog entries
View JSON Schema on GitHub

JSON Schema

roundys-store-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.roundys.com/schemas/store.json",
  "title": "Roundy's Store Data Schema",
  "description": "Schema for Roundy's grocery store data including Pick 'n Save, Metro Market, and Mariano's store locations, departments, services, and product catalog as surfaced through the Kroger Developer Platform APIs.",
  "type": "object",
  "$defs": {
    "GeoCoordinates": {
      "type": "object",
      "title": "GeoCoordinates",
      "properties": {
        "latitude": { "type": "number", "description": "Store latitude coordinate" },
        "longitude": { "type": "number", "description": "Store longitude coordinate" }
      }
    },
    "StoreAddress": {
      "type": "object",
      "title": "StoreAddress",
      "properties": {
        "addressLine1": { "type": "string", "description": "Street address" },
        "addressLine2": { "type": "string", "description": "Suite, unit, or additional address info" },
        "city": { "type": "string", "description": "City name" },
        "state": { "type": "string", "description": "State abbreviation" },
        "zipCode": { "type": "string", "description": "ZIP code" },
        "county": { "type": "string", "description": "County name" }
      }
    },
    "StoreHours": {
      "type": "object",
      "title": "StoreHours",
      "properties": {
        "day": {
          "type": "string",
          "enum": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
        },
        "open": { "type": "string", "description": "Opening time in HH:MM format", "pattern": "^[0-2][0-9]:[0-5][0-9]$" },
        "close": { "type": "string", "description": "Closing time in HH:MM format", "pattern": "^[0-2][0-9]:[0-5][0-9]$" }
      }
    },
    "Store": {
      "type": "object",
      "title": "Store",
      "description": "A Roundy's grocery store location (Pick 'n Save, Metro Market, or Mariano's)",
      "required": ["locationId", "name", "banner", "address"],
      "properties": {
        "locationId": {
          "type": "string",
          "description": "Unique Kroger location identifier for the store"
        },
        "name": {
          "type": "string",
          "description": "Store display name"
        },
        "banner": {
          "type": "string",
          "description": "Retail banner",
          "enum": ["Pick 'n Save", "Metro Market", "Mariano's"]
        },
        "divisionNumber": {
          "type": "string",
          "description": "Kroger division number"
        },
        "phone": {
          "type": "string",
          "description": "Store phone number",
          "pattern": "^[0-9]{10}$"
        },
        "address": { "$ref": "#/$defs/StoreAddress" },
        "geolocation": { "$ref": "#/$defs/GeoCoordinates" },
        "hours": {
          "type": "array",
          "description": "Store operating hours by day of week",
          "items": { "$ref": "#/$defs/StoreHours" }
        },
        "departments": {
          "type": "array",
          "description": "Departments available in this store",
          "items": {
            "type": "string",
            "enum": [
              "Bakery",
              "Deli",
              "Floral",
              "Fuel Center",
              "Grocery",
              "Meat",
              "Natural and Organic",
              "Pharmacy",
              "Produce",
              "Seafood",
              "Wine Beer and Spirits"
            ]
          }
        },
        "services": {
          "type": "array",
          "description": "Services available at this store",
          "items": {
            "type": "string",
            "enum": ["Pickup", "Delivery", "MoneyServices", "RedBox", "WesternUnion"]
          }
        }
      }
    },
    "Product": {
      "type": "object",
      "title": "Product",
      "description": "A grocery product available at Roundy's stores via the Kroger product catalog API",
      "required": ["productId"],
      "properties": {
        "productId": {
          "type": "string",
          "description": "Kroger unique product identifier"
        },
        "upc": {
          "type": "string",
          "description": "Universal Product Code",
          "pattern": "^[0-9]{12,13}$"
        },
        "brand": {
          "type": "string",
          "description": "Product brand name"
        },
        "description": {
          "type": "string",
          "description": "Product display name"
        },
        "aisleLocations": {
          "type": "array",
          "description": "Aisle location(s) in store",
          "items": {
            "type": "object",
            "properties": {
              "bayNumber": { "type": "string" },
              "description": { "type": "string" },
              "number": { "type": "string" },
              "side": { "type": "string" }
            }
          }
        },
        "categories": {
          "type": "array",
          "description": "Product category hierarchy",
          "items": { "type": "string" }
        },
        "images": {
          "type": "array",
          "description": "Product images",
          "items": {
            "type": "object",
            "properties": {
              "id": { "type": "string" },
              "perspective": { "type": "string", "enum": ["front", "back", "left", "right", "top", "ingredient"] },
              "default": { "type": "boolean" },
              "sizes": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": { "type": "string", "enum": ["thumbnail", "small", "medium", "large", "xlarge"] },
                    "url": { "type": "string", "format": "uri" }
                  }
                }
              }
            }
          }
        },
        "items": {
          "type": "array",
          "description": "Price and availability details per store",
          "items": {
            "type": "object",
            "properties": {
              "itemId": { "type": "string" },
              "favorite": { "type": "boolean" },
              "fulfillment": {
                "type": "object",
                "properties": {
                  "curbside": { "type": "boolean" },
                  "delivery": { "type": "boolean" },
                  "inStore": { "type": "boolean" },
                  "shipToHome": { "type": "boolean" }
                }
              },
              "price": {
                "type": "object",
                "properties": {
                  "regular": { "type": "number" },
                  "promo": { "type": "number" }
                }
              },
              "size": { "type": "string" },
              "soldBy": { "type": "string", "enum": ["UNIT", "WEIGHT"] }
            }
          }
        }
      }
    }
  },
  "properties": {
    "stores": {
      "type": "array",
      "description": "List of Roundy's store locations",
      "items": { "$ref": "#/$defs/Store" }
    },
    "products": {
      "type": "array",
      "description": "Product catalog entries",
      "items": { "$ref": "#/$defs/Product" }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/roundys-store"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.