{
  "@context": "https://schema.org",
  "@type": "SportingGoodsStore",
  "@id": "https://www.example.com/stores/berlin#store",
  "name": "Example Outdoors Berlin",
  "description": "Sample local-business record. Fictional address and hours.",
  "image": "https://cdn.example.net/img/store-berlin.jpg",
  "telephone": "+49-30-0000000",
  "priceRange": "EUR 20 - EUR 400",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "1 Sample Street",
    "addressLocality": "Berlin",
    "addressRegion": "BE",
    "postalCode": "10000",
    "addressCountry": "DE"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": 52.5,
    "longitude": 13.4
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "https://schema.org/Monday",
        "https://schema.org/Tuesday",
        "https://schema.org/Wednesday",
        "https://schema.org/Thursday",
        "https://schema.org/Friday"
      ],
      "opens": "09:00",
      "closes": "19:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "https://schema.org/Saturday",
      "opens": "10:00",
      "closes": "16:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "opens": "00:00",
      "closes": "00:00",
      "validFrom": "2026-12-24",
      "validThrough": "2026-12-26"
    }
  ],
  "areaServed": {
    "@type": "City",
    "name": "Berlin"
  },
  "sameAs": [
    "https://www.example.com/",
    "https://cdn.example.net/"
  ]
}
