Yext · Schema
Yext Hours
Structured business hours information for a Yext location entity. Days that are unspecified have no available hours data. Days that are specified but contain no intervals are closed.
Digital PresenceBusiness ListingsLocation DataReviewsAI SearchKnowledge Graph
Properties
| Name | Type | Description |
|---|---|---|
| day | string | The day of the week. |
| intervals | array | A set of opening and closing time intervals for the specified day. |
| reopenDate | string | If the location is temporarily closed, the date it will reopen (YYYY-MM-DD). |
| holidayHours | array | Special hours overrides for specific dates such as holidays. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/yext/main/json-schema/yext-hours-schema.json",
"title": "Yext Hours",
"description": "Structured business hours information for a Yext location entity. Days that are unspecified have no available hours data. Days that are specified but contain no intervals are closed.",
"type": "object",
"properties": {
"day": {
"type": "string",
"description": "The day of the week.",
"enum": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]
},
"intervals": {
"type": "array",
"description": "A set of opening and closing time intervals for the specified day.",
"items": {
"type": "object",
"description": "A single open/close interval expressed as minutes from midnight.",
"properties": {
"start": {
"type": "integer",
"description": "The start time in minutes from midnight (e.g., 540 = 9:00 AM).",
"example": 540
},
"end": {
"type": "integer",
"description": "The end time in minutes from midnight (e.g., 1080 = 6:00 PM).",
"example": 1080
}
}
}
},
"reopenDate": {
"type": "string",
"format": "date",
"description": "If the location is temporarily closed, the date it will reopen (YYYY-MM-DD)."
},
"holidayHours": {
"type": "array",
"description": "Special hours overrides for specific dates such as holidays.",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date",
"description": "The date of the holiday hours override (YYYY-MM-DD)."
},
"intervals": {
"type": "array",
"description": "Open/close intervals for this date. Empty means closed.",
"items": {
"type": "object",
"properties": {
"start": { "type": "integer" },
"end": { "type": "integer" }
}
}
},
"isClosed": {
"type": "boolean",
"description": "If true, the location is closed for the entire day."
}
}
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/yext-hours"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.