SShortSingh.
Back to feed

How to Implement LocalBusiness Schema JSON-LD for Multi-Location Websites

0
·1 views

Websites serving multiple physical locations can use a structured JSON-LD pattern with one Organization node at the brand level and one LocalBusiness node per location page. Each location node should include a stable unique identifier, address, phone, hours, and a parentOrganization link pointing back to the brand node. Developers are advised to use the most specific schema subtype available, such as HardwareStore or Dentist, falling back to LocalBusiness only when no better fit exists. A common pitfall is data drift, where visible page content, structured markup, and Google Business Profile show conflicting information. Rendering both the visible hours and the JSON-LD from the same data source is recommended to prevent such inconsistencies at scale.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

WClickHouse Adds Zero-Copy Apache Arrow Support for Faster Python Analytics

WClickHouse, an open-source Python library, has introduced zero-copy columnar data transfer between Apache Arrow and ClickHouse via new insert_arrow() and query_arrow() methods. The integration eliminates row-by-row serialization, a major bottleneck in Python analytics pipelines that causes high RAM usage and garbage collector pauses. Data in Arrow or Parquet format can now be streamed directly to ClickHouse over a socket without duplication in Python's heap. The library is compatible with Python 3.9 through 3.14 and supports Apache Arrow alongside Pydantic v2. It has been tested against live ClickHouse instances with over 95% test coverage and is available on GitHub and PyPI.

0
ProgrammingDEV Community ·

Developer Builds CLI Tool That Uses AI to Generate Git Commit Messages

A software developer has created an open-source command-line tool called cmt-cli that uses OpenAI's API to automatically generate Git commit messages from staged changes. The tool addresses the common developer pain point of deciding on commit types and writing meaningful descriptions for every code change. Users install it via PyPI, configure an OpenAI API key, stage their changes, and run 'cmt suggest' to receive an AI-generated message for review or editing. The developer intentionally kept the human in the loop, allowing the final commit message to be reviewed or modified before use. Planned improvements include better handling of large diffs, custom commit rules, and support for additional AI providers beyond OpenAI.

0
ProgrammingDEV Community ·

WClickHouse Adds Zero-Copy Arrow Integration for Faster Python Analytics

An open-source Python library called WClickHouse has introduced Apache Arrow-based zero-copy columnar data transfer to ClickHouse databases. The library's insert_arrow() and query_arrow() methods allow developers to stream millions of rows directly without Python row iteration or JSON serialization overhead. This approach addresses common bottlenecks in data engineering pipelines, including high RAM usage, garbage collection pauses, and slow object conversion. The project supports Python versions 3.9 through 3.14 and is built with Apache Arrow and Pydantic v2. It is available on both GitHub and PyPI and claims over 95% test coverage verified against live ClickHouse instances.

0
ProgrammingDEV Community ·

AI Agent Circuit Breakers: How Runaway LLM Loops Are Draining Enterprise Budgets

Autonomous AI agents deployed without proper safeguards can enter infinite retry loops, causing API costs to spiral exponentially as each failed attempt expands the LLM context window. A real-world example illustrates how a single CAPTCHA encounter during a weekend staging run generated a $542 bill through unchecked recursive retries. An AI agent circuit breaker is an architectural pattern that monitors token consumption, tracks execution depth, detects runaway loops, and triggers fallbacks to human operators before costs escalate. Unlike traditional software retries that cost fractions of a cent, generative AI retries grow costlier with every iteration due to accumulating context. As autonomous agentic workflows scale through mid-2026, experts warn that ignoring state management in favor of prompt engineering alone is a leading driver of the $45,000–$250,000 average first-year cost overruns seen in enterprise AI deployments.

How to Implement LocalBusiness Schema JSON-LD for Multi-Location Websites · ShortSingh