events
Server Details
Live event discovery: concerts, club nights, art, comedy, and festivals across 14 cities.
- Status
- Healthy
- Uptime
- 100.0% over 41 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 30 tools
Several tools have close boundaries, such as recommend_events vs recommend_events_for_user, save_event vs add_to_dizko_plan, and get_ticket_offers vs quote_ticket_order. Descriptions help, but an agent could easily pick the wrong tool in personalized recommendation or plan-saving flows.
Most tools follow a snake_case verb_noun pattern like get_event, save_event_preferences, and search_events. Minor deviations like bin_event and find_scene_entities, plus the non-parallel recommend_events vs recommend_events_for_user, keep it from being fully consistent.
With 30 tools, the set exceeds the 25+ threshold where tool count becomes a coherence problem. Several tools could be consolidated, particularly around ticket offers/quoting, event saving/planning, and preference profile creation/updating.
The toolset covers search, event details, artist/venue profiles, recommendations, preferences, ticket quote/purchase, calendar export, feedback, and city-level discovery. Minor gaps include no explicit unsave/remove-from-plan operation and no ticket cancellation flow.
Available Tools
30 toolsadd_to_dizko_planAdd to Dizko PlanBIdempotentInspect
Use this when a user confirms they want to add one Dizko event to the connected user's persistent plan only after explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | ||
| confirmed | Yes | ||
| idempotency_key | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotent and non-destructive. The description adds the requirement of explicit confirmation, which is a behavioral guard. It does not contradict annotations, but it doesn't disclose other behaviors like side effects or error handling, so it adds limited value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with the usage trigger, and no fluff. It's appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with three required parameters and no output schema, the description is minimal. It doesn't explain the idempotency_key purpose, prerequisites beyond confirmation, or what happens on success/failure. Given the complexity, it is incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has zero description coverage, so the description must explain parameters. It implies event_id (the event) and confirmed (explicit confirmation), but does not mention idempotency_key at all. Thus it provides partial but insufficient parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: adding one Dizko event to the connected user's persistent plan, with the condition of explicit confirmation. It distinguishes from siblings like plan_night or save_event by specifying 'persistent plan', but it doesn't explicitly name alternatives, so a 4 is appropriate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a trigger condition ('when a user confirms they want to add... only after explicit confirmation') which gives clear context for use. However, it does not mention alternatives or when not to use this tool, so it lacks explicit exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bin_eventBin EventADestructiveIdempotentInspect
Use this only when the user confirms an event is not for them. It hides the event and teaches their Dizko taste model.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | ||
| confirmed | Yes | ||
| idempotency_key | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal destructiveHint=true, readOnly=false, and idempotent=true; the description adds useful context beyond those by explaining the side effect on the taste model ('teaches their Dizko taste model') and describing the action as 'hides' rather than 'deletes.' This does not contradict the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The critical usage condition is front-loaded in the first sentence, and the second sentence adds the behavioral effect. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive, write-side tool with no output schema and three undocumented parameters, this description is too thin. It explains when to call and the general effect, but omits parameter semantics, the meaning of 'confirmed,' idempotency behavior, and the consequences of the destructive action, leaving an agent under-equipped to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the full burden for three required parameters: event_id, confirmed, and idempotency_key. It does not explain any of them, their formats, relationships, or why confirmed and idempotency_key are required. This is a severe gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('hides the event') and the resource (event), and adds the secondary effect of teaching the Dizko taste model. It also distinguishes this from siblings like save_event or record_event_feedback by scoping it to events the user confirms are not for them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit, strong usage condition: 'Use this only when the user confirms an event is not for them.' This clearly tells the agent when to invoke it, but it does not name alternative tools or explicitly say what to use instead when the event is for the user, so it lacks the full alternative routing of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_event_calendar_fileCreate Event Calendar FileBRead-onlyIdempotentInspect
Use this when a user wants to add a Dizko event to their calendar after choosing or buying tickets.
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| event_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description says the tool adds an event to a calendar, a write-like side effect, while annotations mark readOnlyHint=true. This is a direct contradiction, and the description provides no other behavioral details such as what file is generated or how the calendar is updated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, front-loaded with the 'Use this when' trigger, with no filler. It earns its place despite lacking parameter details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given two parameters, no output schema, and an annotation contradiction, the definition does not tell the agent enough about behavior or return value. It covers the trigger condition but leaves status semantics and the actual calendar-file mechanics unstated.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description fails to explain either parameter. Input schema coverage is 0%, so the agent must rely on the bare names event_id and status, and status remains opaque with no allowed values or purpose. This goes beyond the acceptable baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a concrete use case: add a Dizko event to the user's calendar after ticket choice or purchase. It names both the action and the resource, and no sibling tool covers calendar-file creation, so it is easy to distinguish.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Gives an explicit trigger condition ('after choosing or buying tickets'), which tells an agent when to invoke it. It does not document when not to use it or name alternatives, but the sibling list contains no direct alternative for this task, so the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_event_preference_profileCreate Event Preference ProfileBInspect
Use this when a user agrees to create a saved Dizko preference profile.
| Name | Required | Description | Default |
|---|---|---|---|
| consent | Yes | ||
| preferences | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are all false and provide little safety signal, so the description carries the burden. It only says 'create a saved profile,' implying persistence and consent, but it does not disclose important behavior such as whether an existing profile is overwritten, what happens if consent is false, or any side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words and the usage trigger front-loaded. However, it is too brief for the complexity of the tool, so it is not fully appropriate in size.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, no helpful annotations, and a complex preferences input, this one-sentence description is inadequate. It omits consent semantics, default behavior, return value expectations, and the distinction from save_event_preferences.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description adds no parameter meaning. It hints at consent through 'user agrees,' but does not explain the required consent boolean or the large preferences object at all.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the trigger condition and resource: a user agrees to create a saved Dizko preference profile. It is not a tautology, but it does not explicitly differentiate this from the sibling save_event_preferences, so it misses the top score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context for when to use the tool: when the user agrees to create a saved profile. However, it does not mention alternatives or exclusion cases, so an agent is not told how this differs from save_event_preferences.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_event_preferencesDelete Event PreferencesADestructiveIdempotentInspect
Use this only when a user asks to delete their Dizko saved event preferences and feedback history.
| Name | Required | Description | Default |
|---|---|---|---|
| profile_id | Yes | ||
| confirm_delete | Yes | ||
| profile_secret | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare destructiveHint=true and idempotentHint=true, and the description adds useful context about what gets destroyed: saved event preferences and feedback history. It also emphasizes that deletion should happen only when the user explicitly asks, which is a meaningful consent-oriented behavioral signal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word contributes to clarifying the tool's purpose and usage condition, making it easy for an agent to scan and act on.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for tool selection and clearly identifies the deletion scope, while annotations cover destructiveness and idempotency. However, it omits guidance on the confirmation flag, profile secret semantics, and what the result of deletion looks like, so invocation details are left mostly to schema names and inference.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no parameter-specific information. The parameter names (profile_id, profile_secret, confirm_delete) are somewhat self-explanatory, but the description does not clarify how they should be used or that confirm_delete must be set to true to proceed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (delete) and a specific resource (Dizko saved event preferences and feedback history), making the tool's purpose unambiguous. It also clearly distinguishes this from sibling tools like get_event_preferences, save_event_preferences, and create_event_preference_profile by focusing exclusively on deletion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an explicit trigger: use this only when a user asks to delete their saved event preferences and feedback history. It does not name alternatives or provide when-not-to-use details, but the 'only when' phrasing provides clear routing context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_scene_entitiesFind Scene EntitiesBRead-onlyIdempotentInspect
Use this when a user asks who a DJ is or about a venue, collective, or promoter.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| city | No | ||
| kind | Yes | ||
| genre | No | ||
| limit | No | ||
| query | No | ||
| date_to | No | ||
| date_from | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnly, idempotent, non-destructive behavior, and a closed world. The description adds little behavioral context beyond that; it does not explain what the tool returns, whether results are filtered, or how IDs and queries interact. It introduces no contradiction, but it also does not meaningfully extend beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It earns its place by stating a concrete use case, and it is easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 8 parameters, no output schema, and no parameter-level documentation. The description covers only the intended trigger, leaving out required input semantics, filtering behavior, return expectations, and boundary conditions such as limit or date constraints. This is not complete enough for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, but it only maps entity types ('DJ', 'venue', 'collective', 'promoter') to the 'kind' parameter. It does not explain the anyOf relationship between id and query, the meaning of date ranges, city, genre, or limit parameters, or how they affect results.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: it is used when a user asks about a DJ or scene-based entities like venues, collectives, and promoters. This aligns with the 'find' verb in the name and the 'kind' enum values. It does not deeply differentiate from siblings like get_artist or get_venue, but it is clear enough about what it locates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a direct when-to-use signal: 'Use this when a user asks who a DJ is or about a venue, collective, or promoter.' This is practical and context-specific, though it does not mention when to prefer sibling tools such as get_artist or get_venue.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_artistGet ArtistARead-onlyIdempotentInspect
Use this when a user wants a canonical artist profile, graph context, published links, and upcoming events. Pass an id or a name query; this does not enumerate the artist catalog.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| city | No | ||
| limit | No | ||
| query | No | ||
| date_to | No | ||
| date_from | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish that the tool is read-only, idempotent, and non-destructive. The description adds useful behavioral context by specifying the result scope (canonical profile, graph context, links, events) and the negative constraint 'does not enumerate the artist catalog'. This goes beyond the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The usage condition is front-loaded, and every sentence adds meaningful information about scope or invocation. It is appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With six parameters, no output schema, and zero schema description coverage, the description is not complete enough. It clarifies purpose and the id/query path, but leaves four parameters undocumented and does not describe response shape or filtering behavior. An agent would need to guess the meaning of city, limit, date_from, and date_to.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the six parameters. It only explains that 'id' or a 'query' (name query) can be passed, leaving city, limit, date_from, and date_to completely unexplained. This is a significant gap for a tool with multiple optional parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear, specific action: retrieving a canonical artist profile along with graph context, published links, and upcoming events. It also explicitly notes that the tool does not enumerate the artist catalog, which adds scope precision. However, it does not name or directly differentiate from sibling tools like get_artist_page or get_artist_events, so it stops short of full sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description opens with 'Use this when a user wants...', giving an explicit condition for when to invoke the tool. It also clarifies the input mode ('Pass an id or a name query'). It does not mention when not to use it or point to alternatives, so it lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_artist_eventsGet Artist EventsBRead-onlyIdempotentInspect
Use this when a user wants upcoming events for named artists or artists saved in a Dizko profile.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| artists | No | ||
| date_to | No | ||
| date_from | No | ||
| profile_id | No | ||
| profile_secret | No | ||
| limit_per_artist | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows this is a safe read operation. The description adds the 'upcoming events' time-frame signal but does not disclose additional behavior such as filtering by city, date ranges, or limit semantics. With annotations covering the safety profile, a middle score is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no filler. The primary use case is front-loaded, and every word contributes to telling the agent when the tool applies.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with seven parameters, no output schema, and zero schema-level parameter descriptions, the description provides only minimal context. It clarifies the core use case but leaves important invocation details like city/date filtering and profile credential coupling undocumented. This is insufficient for an agent to correctly call the tool in all intended scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only hints at two conceptual inputs: named artists and a Dizko profile. It does not explain city, date_from, date_to, limit_per_artist, or the dependent profile_secret requirement. Since the schema provides no parameter descriptions, the description fails to compensate for the low coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear use case: retrieving upcoming events for named artists or artists saved in a Dizko profile. It specifies the verb ('get'), the resource ('events'), and the target audience ('artists'). It does not explicitly name a sibling tool for differentiation, but the scope is specific enough to distinguish it from broader event search tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly opens with 'Use this when a user wants upcoming events,' giving a clear invocation context. It does not mention when not to use the tool or name alternatives such as search_events or recommend_events, so it stops short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_artist_pageGet Artist PageARead-onlyIdempotentInspect
Use this when a user wants an artist's Dizko page or a specific published mix or set. Returns the page embeds with stable block ids for deep links.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description complements them by explaining the return behavior: page embeds with stable block IDs for deep links. It does not cover errors or auth, but the annotation coverage lowers the bar and the added return context is valuable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no redundancy: the first states the trigger, the second states the key output property. Every clause earns its place and the most decision-relevant information appears first.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter, read-only retrieval tool, the description gives a useful usage trigger and result summary, but the undocumented handle format and the close sibling get_artist leave gaps. It is adequate for invocation but not fully complete without an output schema or parameter details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema coverage, the description must compensate by defining the required 'handle' parameter, but it never says what a valid handle looks like, whether it is an artist slug, a mix/set URL, or an ID, or how it maps to the mentioned page/mix/set cases. The description only loosely implies that the handle identifies the requested page.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource and action: retrieving an artist's Dizko page or a specific published mix/set. It also adds the distinguishing return detail of page embeds with stable block IDs, though it does not explicitly differentiate from sibling get_artist.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The opening 'Use this when a user wants...' provides an explicit trigger condition for the tool. However, it does not state when another sibling like get_artist or get_artist_events would be more appropriate, so the guidance is clear but not exclusionary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_city_pulseGet City PulseARead-onlyIdempotentInspect
Use this when a user wants a city's busiest nights, top venues, genre mix, and headline events.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | ||
| days | No | ||
| date_from | No | ||
| event_types | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds meaningful behavioral context by specifying the types of aggregated data returned (busiest nights, top venues, etc.), which goes beyond what annotations convey. No contradictions exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately states the use case. There is zero waste, and every word adds value. It efficiently conveys the tool's purpose without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description gives a high-level output summary but leaves parameters completely unexplained. With no output schema and 4 parameters at 0% schema coverage, the description should provide enough detail for correct invocation. It does not explain how to use days, date_from, or event_types, nor does it mention the required 'city' parameter explicitly. The tool is not complete for an agent to call it correctly without additional inference.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the schema provides no parameter explanations. The description mentions 'city' implicitly but does not explain days, date_from, or event_types. With low coverage, the description should compensate, but it fails to clarify the semantics or allowed values of these parameters, leaving agents to guess.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a city's busiest nights, top venues, genre mix, and headline events. This is a specific verb (get) with a resource (city) and distinct output categories, making it easily distinguishable from siblings like search_events or recommend_events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states 'Use this when a user wants...' which provides a clear trigger condition. However, it does not mention any exclusions or alternatives, so an agent might not know when to prefer a sibling like search_events or get_venue instead. The guidance is clear but not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_daily_roundupGet Daily RoundupBRead-onlyIdempotentInspect
Use this when a user wants a daily city event digest.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | ||
| date | No | ||
| free | No | ||
| vibe | No | ||
| when | No | ||
| avoid | No | ||
| limit | No | ||
| genres | No | ||
| price_max | No | ||
| top_limit | No | ||
| profile_id | No | ||
| event_types | No | ||
| neighborhoods | No | ||
| section_limit | No | ||
| profile_secret | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish that the tool is read-only, idempotent, and non-destructive, so the description does not need to repeat that. It adds the behavioral hint that the result is a 'digest'—an aggregated summary rather than raw event listings. This is useful context but minimal; no details about output shape, auth requirements, or how filters affect behavior are given.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or repetition. It efficiently communicates the core invocation condition. While it is concise to the point of omitting important details, that is a completeness issue rather than a conciseness issue.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 15 parameters, 0% schema description coverage, and no output schema, the description alone is far too thin to guide correct invocation. It does not explain how parameters like 'profile_id', 'vibe', or 'price_max' affect the roundup, nor what the returned digest contains. An agent would need substantial additional inference to call this tool confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no information about any of the 15 parameters. It does not explain what 'city', 'date', 'free', 'vibe', 'avoid', 'profile_id', or any other field means or how they shape the digest. The description fails entirely to compensate for the lack of schema-level parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear purpose: fetching a daily city event digest. It identifies the specific resource ('daily roundup') and the user need it serves, which is enough to distinguish it from generic search or recommendation tools. However, it does not explicitly differentiate it from close siblings like get_city_pulse or search_events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description opens with an explicit trigger condition: 'Use this when a user wants a daily city event digest.' This gives a clear, direct instruction on when to invoke the tool. It lacks explicit when-not-to-use guidance or named alternatives, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_eventGet EventARead-onlyIdempotentInspect
Use this when a user asks for details about a Dizko event id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already provide a strong safety profile (readOnlyHint=true, destructiveHint=false, idempotentHint=true), so the description does not need to restate that. However, the description adds no extra behavioral context beyond 'details', such as what happens for a missing event or what the response contains.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise sentence, front-loaded with a clear usage trigger and no wasted words. It is easy to parse and directly actionable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter read-only tool with rich annotations and no output schema, the description provides the core trigger and scope. It does not elaborate on return values or error cases, but 'details' plus the annotations make the tool adequately callable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does identify the lone 'id' parameter as a Dizko event id, adding domain meaning beyond the bare schema. It does not offer format or examples, but that is a minor gap for a single string parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear action ('get details') and a specific resource ('a Dizko event id'), making the tool's purpose easy to grasp. It does not explicitly differentiate itself from sibling search/get tools, but the phrase 'event id' signals a by-ID lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives a clear use condition: when the user asks for details about a specific event ID. It does not mention when not to use it or name alternatives like search_events, but the contextual trigger is sufficient for a simple lookup tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_event_feedback_promptGet Event Feedback PromptBRead-onlyIdempotentInspect
Use this when a user needs a short post-event feedback prompt.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | ||
| attended_at | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds the behavioral context that the output is a short post-event feedback prompt, but it does not disclose return format or how input values affect the prompt. This is adequate but not richly transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. It communicates the core usage compactly, though it is concise partly because it omits detail that would improve completeness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple safe read-only prompt tool, the description plus annotations provide a minimally viable understanding: an agent can infer it returns a feedback prompt and needs event_id. It does not describe the return value or optional attended_at, and lacks alternative guidance, leaving some gaps for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain event_id or attended_at. The words 'post-event' provide a faint contextual link to attended_at, and event_id is self-explanatory, but the description does not compensate for the missing schema descriptions. Parameter semantics are largely left to inference.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear use case: provide a short post-event feedback prompt. It identifies the resource as a feedback prompt and distinguishes it from recording feedback (e.g., record_event_feedback) by focusing on generating a prompt. However, it does not explicitly differentiate itself from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly begins with 'Use this when a user needs a short post-event feedback prompt,' giving clear context for when the tool applies. It offers no exclusions or alternative-tool routing, but the trigger condition is concrete enough to guide selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_event_preferencesGet Event PreferencesBRead-onlyIdempotentInspect
Use this when a user wants to view saved and learned event preferences.
| Name | Required | Description | Default |
|---|---|---|---|
| profile_id | Yes | ||
| profile_secret | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds that the tool retrieves both saved and learned preferences, but it does not disclose additional behavioral details such as auth failure behavior or limits. This is acceptable but not above the lowered bar.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that directly states the intended use. There is no filler or redundant rephrasing of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with strong annotations and only two required parameters, the description is mostly adequate. However, the absence of parameter explanations and any return-shape hint (no output schema exists) leaves gaps for an agent trying to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no explanation of profile_id or profile_secret. The agent must rely solely on parameter namesasi, which is insufficient given the low coverage and the requirement for both parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('view') and resource ('saved and learned event preferences'), which differentiates it from mutating siblings like save_event_preferences and delete_event_preferences. It is not a tautology and gives the agent a concrete sense of what the tool is for, though it does not explicitly contrast with any sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly frames the trigger condition: 'Use this when a user wants to view saved and learned event preferences.' This is clear context but does not mention when not to use it or point to alternatives, so it stops short of full differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_event_search_followupsGet Event Search FollowupsBRead-onlyIdempotentInspect
Use this when an event search needs follow-up questions.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| free | No | ||
| vibe | No | ||
| when | No | ||
| avoid | No | ||
| query | No | ||
| venue | No | ||
| genres | No | ||
| date_from | No | ||
| max_price | No | ||
| price_max | No | ||
| event_types | No | ||
| neighborhoods | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no behavioral detail beyond the 'needs follow-up questions' context, and does not explain what happens after invocation, what output to expect, or any other execution-relevant behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence with no filler or repetition. It is concise and the one sentence earns its place by stating when to use the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having 13 optional parameters and no output schema, the description gives only a thin usage trigger. It does not explain how to provide search context, what the follow-up questions will look like, or what an agent should do with the result, so the tool is inadequately specified for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% across 13 parameters, and the description provides zero parameter guidance. An agent is left with bare names like 'when', 'date_from', 'max_price', and 'price_max' and no way to know their semantics or how to populate them for this tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The name and title supply the verb 'get' and the resource 'event search followups', and the description gives a clear trigger: use it when an event search needs follow-up questions. It is not a tautology and is distinct from nearby sibling tools like get_event_feedback_prompt, though it never explicitly states what the tool returns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Use this when...' and names the condition: an event search needs follow-up questions. It does not mention alternatives or when not to use it, but the provided context is a clear and actionable trigger.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_preference_onboardingGet Preference OnboardingBRead-onlyIdempotentInspect
Use this when a user wants consent-first questions before saving event preferences.
| Name | Required | Description | Default |
|---|---|---|---|
| profile_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already communicate that this is a safe, read-only, idempotent operation, so the description's burden is lower. It adds modest behavioral context by noting the consent-first nature and that it precedes saving, but it does not disclose what the response contains, whether it is a list of questions, or how a caller should consume the result.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact sentence with no wasted words. However, it is framed entirely as a usage directive and never actually says what the tool does or returns, which makes it underspecified rather than genuinely concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is low-complexity (one unrequired param, no nested objects), but there is no output schema, so the description should explain what the call returns; it does not. The profile_id parameter is also left entirely unexplained, leaving an agent without enough information to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the lone parameter, profile_id, is completely undocumented in the description. With coverage that low, the description was required to compensate, but it says nothing about the parameter's meaning, format, or why it is needed for onboarding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description implies the tool surfaces consent-first onboarding questions that precede saving event preferences, which distinguishes it from siblings like get_event_preferences (retrieve saved preferences) and save_event_preferences (persist them). It lacks a direct verb+resource statement like 'retrieve onboarding questions', but the intended purpose is inferable and differentiates well from the event-preference family.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: when a user wants consent-first questions before saving event preferences. It gives clear context but does not name alternatives or state when not to use it, missing the full when/when-not articulation that would earn a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_taste_profileGet Taste ProfileARead-onlyIdempotentInspect
Use this when personalizing for a connected user: read their learned Dizko taste plus saved and binned events.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context about what data is read (learned taste, saved/binned events) and implies a precondition ('connected user'), which goes beyond the annotations and is valuable for correct invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the usage condition ('when personalizing for a connected user') and then states the action. Every word earns its place; there is no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no parameters and no output schema, the description explains what data is returned (learned taste, saved/binned events) and when to use it. It lacks details on output format or error conditions, but given the low complexity, it is sufficiently complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema coverage is 100% by definition. The baseline for 0 parameters is 4, and the description adds no parameter information (none needed). It does not detract from the score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: reading a connected user's learned Dizko taste plus saved and binned events. The verb 'read' and resource 'taste profile' are specific, and it distinguishes itself from siblings like get_event_preferences by focusing on the taste profile and saved/binned events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear usage context: 'when personalizing for a connected user.' It indicates when to use the tool but does not explicitly mention alternatives or exclusions. However, the context is specific enough to guide an agent without needing to compare with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ticket_offersGet Ticket OffersARead-onlyIdempotentInspect
Use this when a user wants ticket options for a specific Dizko event before quoting or buying.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds only the pre-quote/pre-purchase context and does not disclose additional behavior such as result scope, data source, or any edge cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence states when and why to use the tool with no filler. It is efficiently structured for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter, read-only tool, the description covers the core scenario and target resource. It does not describe the return shape of ticket offers, but the output is reasonably inferable from 'ticket options' and no output schema is provided.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. The phrase 'specific Dizko event' gives event_id a meaningful domain context, but it never explicitly explains that event_id is the Dizko event identifier or how to find it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: providing ticket options for a specific Dizko event. It also distinguishes this from related transaction tools by stating it happens 'before quoting or buying.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use the tool ('when a user wants ticket options for a specific Dizko event') and gives helpful sequencing context ('before quoting or buying'). It does not explicitly name alternatives or exclusions, but the usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ticket_purchase_policyGet Ticket Purchase PolicyARead-onlyIdempotentInspect
Use this when a user asks how Dizko agents can buy tickets.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds minimal behavioral context by framing this as informational ('how') rather than an execution step, but it does not describe what the policy contains or how it should be presented.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no filler and front-loads the user intent that triggers the tool. This is appropriately sized for a zero-parameter policy lookup.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only, idempotent, zero-parameter tool, the trigger condition and title provide enough context for an agent to select and invoke it correctly. It does not describe the output shape, but no output schema exists and the use case is narrow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and schema coverage is 100%, so there are no params for the description to clarify. Per the baseline for 0-param tools, this dimension deserves a solid 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific trigger ('when a user asks how Dizko agents can buy tickets') and clearly identifies the lookup nature of the tool. It does not explicitly describe the policy contents or name sibling tools, but the purpose is recognizable and distinct from purchase/quote actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives one explicit usage condition: use it when a user asks 'how' agents can buy tickets. It does not provide exclusions or alternatives, such as directing actual purchasing to purchase_ticket_order, so routing guidance is implied rather than fully specified.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_venueGet VenueARead-onlyIdempotentInspect
Use this when a user wants a canonical venue profile, graph context, and upcoming events. Pass an id or a name query; this does not enumerate the venue catalog.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| city | No | ||
| limit | No | ||
| query | No | ||
| date_to | No | ||
| date_from | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey read-only, idempotent, non-destructive behavior, so the description does not need to repeat those. It adds useful scoping context like 'canonical profile', 'graph context', and 'does not enumerate', but does not disclose return format, pagination, or how filters behave. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tightly written sentences front-load the use condition and key input constraints. There is no filler, and every clause adds information relevant to selecting and invoking the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and zero property-level schema descriptions, this tool needs more context to be fully usable. It explains how to identify a venue but does not clarify the meaning of date, city, and limit parameters or what 'graph context' and 'upcoming events' return exactly. It is minimally usable for the id/query path but incomplete for richer queries.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameter meaning. It usefully clarifies that 'id' or 'query' can be passed and that query is a name query, but leaves 'city', 'limit', 'date_from', and 'date_to' entirely unexplained, which is a significant gap for a 6-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: returning a canonical venue profile, graph context, and upcoming events. It also distinguishes itself from enumeration-style siblings by explicitly noting it does not enumerate the venue catalog, giving the agent a concrete understanding of the resource and scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description opens with an explicit 'Use this when...' trigger and clarifies the two acceptable input modes: id or a name query. It implies a constraint against catalog enumeration but does not name alternatives or give when-not-to-use guidance relative to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_citiesList Covered CitiesARead-onlyIdempotentInspect
Use this when a user asks about Dizko city coverage or freshness.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds a bit of context about coverage and freshness but does not disclose response shape, caching, or any operational behavior beyond the trigger. That modest additional value justifies a 3.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no wasted words and places the usage trigger upfront. It is as concise as possible while still conveying when to use the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless, read-only list tool with strong annotations, the description provides enough contextual signal about city coverage and freshness. The main gap is that it does not explicitly state the return value (e.g., a list of covered cities with freshness indicators), relying on the title for that meaning.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters and schema description coverage is 100%, so there is no parameter burden for the description to carry. The baseline for zero-parameter tools is 4, and the description appropriately needs no param-specific detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The title 'List Covered Cities' supplies the action and resource, and the description clarifies that Dizko city coverage or freshness is the subject. It is clear enough for an agent, though the description itself leans on a usage trigger rather than an explicit verb and resource statement. It does not strongly differentiate from get_city_pulse, but they are clearly different in scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'when a user asks about Dizko city coverage or freshness.' This gives a clear context match, but it does not list exclusions or name alternative tools, so it falls just short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_nightPlan NightCRead-onlyIdempotentInspect
Use this when a user wants a primary night-out plan with fallback events.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| free | No | ||
| vibe | No | ||
| when | No | ||
| avoid | No | ||
| limit | No | ||
| pride | No | ||
| query | No | ||
| venue | No | ||
| cursor | No | ||
| genres | No | ||
| offset | No | ||
| date_to | No | ||
| promoter | No | ||
| date_from | No | ||
| featuring | No | ||
| max_price | No | ||
| price_max | No | ||
| price_min | No | ||
| profile_id | No | ||
| event_types | No | ||
| result_limit | No | ||
| neighborhoods | No | ||
| profile_secret | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the behavioral trait of generating a primary plan with fallback events, which is useful context beyond the annotations. However, it doesn't disclose how fallbacks are selected, whether results are ranked, or what the response shape looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no wasted words, and the key differentiator ('primary night-out plan with fallback events') is front-loaded. It is concise, though it could be slightly more informative without becoming bloated.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 24 parameters, no output schema, and no parameter descriptions, the description is far too thin. It does not explain what a 'plan' contains, how fallback events are chosen, or how the many parameters relate to the planning logic. The annotations cover safety, but the description leaves the agent without enough context to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no parameter-level guidance. With 24 parameters, many of which are ambiguous (e.g., 'free', 'vibe', 'avoid', 'query', 'cursor', 'offset', 'price_max' vs 'max_price', 'result_limit' vs 'limit'), the description does nothing to help an agent map user intent to the correct parameters. This is a critical gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('plan') and resource ('night-out plan') and adds a distinguishing feature: it produces a primary plan with fallback events. This differentiates it from sibling tools like search_events or recommend_events, though it doesn't explicitly name those alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it: when a user wants a primary night-out plan with fallback events. It does not explicitly state when not to use it or name alternatives like search_events or recommend_events, so the agent must infer the boundary from the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
purchase_ticket_orderPurchase Ticket OrderBDestructiveInspect
Use this when a user confirms a locked quote for purchase or checkout handoff.
| Name | Required | Description | Default |
|---|---|---|---|
| quote_token | Yes | ||
| idempotency_key | No | ||
| confirmation_text | Yes | ||
| user_payment_profile_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already communicate that this is a destructive, non-read-only, non-idempotent operation. The description adds the 'locked quote' context, which implies a prior quote step, but it does not disclose that this likely triggers a charge, creates an order, or has irreversible consequences. With annotations present, the description adds some but limited behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is tight and front-loaded with the key trigger. No filler words. However, the brevity comes at the cost of missing parameter and behavioral detail, so it is efficient but not fully informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a destructive, financial-action tool with no output schema and zero parameter documentation. The description only states when to use it, not what happens on success/failure, payment implications, or idempotency behavior. For an agent to invoke this safely, considerably more context is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not compensate by explaining any of the four parameters. While names like quote_token and idempotency_key are somewhat self-explanatory, the critical confirmation_text and user_payment_profile_id semantics are left undefined, especially important for a financial transaction.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear trigger: 'when a user confirms a locked quote for purchase or checkout handoff.' Combined with the title 'Purchase Ticket Order', an agent can infer this tool executes a purchase for an already-quoted order. The phrase 'locked quote' differentiates it from quote_ticket_order, though it does not explicitly name the sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit condition for use: user confirmation of a locked quote or checkout handoff. This tells the agent when in the flow to invoke it. It doesn't explicitly exclude alternatives like get_ticket_purchase_policy, but the context is clear enough for a competent agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
quote_ticket_orderQuote Ticket OrderARead-onlyInspect
Use this when a user wants a locked ticket quote before purchase.
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | ||
| event_id | Yes | ||
| offer_id | No | ||
| quantity | No | ||
| max_total | No | ||
| ticket_type | No | ||
| refund_terms | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds the 'locked' qualifier benen. However, it does not explain what 'locked' means operationally or how the quote behaves toward purchase.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, no filler, and the usage condition is front-loaded. Every word contributes to orienting the agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With seven parameters, 0% schema coverage, no output schema, and only a one-line description, the tool definition lacks critical context around parameter semantics, return behavior, pricing details, and the 'locked' quote lifecycle. An agent could call it but may mis-set fields like max_total or currency.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for seven undocumented parameters. 'Locked ticket quote before purchase' provides broad context but does not explain event_id, offer_id, max_total, refund_terms, or other parameter meaning beyond what the property names imply.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action: produce a locked ticket quote before purchase. It clearly differentiates this from purchase_ticket_order by naming the pre-purchase stage and from get_ticket_offers by specifying 'locked quote' rather than just offers.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says when to use the tool: when a user wants a locked quote before purchase. It does not explicitly name alternatives or exclusions, but the 'before purchase' phrasing strongly implies the boundary relative to purchase_ticket_order.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_eventsRecommend EventsBRead-onlyIdempotentInspect
Use this when a user wants live events ranked by taste, vibe, price, and exclusions.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| free | No | ||
| vibe | No | ||
| when | No | ||
| avoid | No | ||
| limit | No | ||
| pride | No | ||
| query | No | ||
| venue | No | ||
| cursor | No | ||
| genres | No | ||
| offset | No | ||
| date_to | No | ||
| promoter | No | ||
| date_from | No | ||
| featuring | No | ||
| max_price | No | ||
| price_max | No | ||
| price_min | No | ||
| event_types | No | ||
| result_limit | No | ||
| neighborhoods | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds that results are 'ranked' and restricted to 'live events', which is useful behavioral context, but it says nothing about pagination, ordering semantics, or how 'taste' is interpreted.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that immediately states when to use the tool and what it does. There is no filler or repetition, and it reads naturally for an agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 22 parameters, no output schema, and zero parameter descriptions, a one-sentence description is insufficient for correct invocation. The agent lacks guidance on required filter combinations, pagination behavior, or the meaning of overlapping price and limit parameters. The description establishes purpose but not operational completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the full burden for explaining 22 parameters. It only hints at vibe, price, and exclusions, leaving city, date ranges, genres, cursor/offset, price_min/price_max vs max_price, and many others unexplained. This is a significant gap for a high-cardinality parameter set.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('recommend'/'ranked') and resource ('live events'), plus the ranking criteria of taste, vibe, price, and exclusions. It is clear but does not explicitly differentiate from sibling tools like recommend_events_for_user, which likely also recommends events but based on a stored profile.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Use this when a user wants live events ranked...' gives an explicit trigger condition. It does not mention alternatives or exclusions, so it misses the opportunity to route agents away from search_events or recommend_events_for_user, but the primary use case is clearly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_events_for_userRecommend Events For UserBRead-onlyIdempotentInspect
Use this when a user wants recommendations personalized with a saved Dizko profile.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| free | No | ||
| vibe | No | ||
| when | No | ||
| avoid | No | ||
| limit | No | ||
| query | No | ||
| venue | No | ||
| genres | No | ||
| date_to | No | ||
| date_from | No | ||
| featuring | No | ||
| max_price | No | ||
| nightlife | No | ||
| price_max | No | ||
| profile_id | Yes | ||
| event_types | No | ||
| result_limit | No | ||
| neighborhoods | No | ||
| profile_secret | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey readOnly, idempotent, and non-destructive behavior. The description adds value by noting that recommendations are personalized using a saved profile, which is useful context. It does not disclose return format, authentication details, or error behavior, but the annotations reduce the burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. However, for a tool with 20 parameters, this brevity reflects under-specification rather than deliberate compactness, so it is not fully appropriate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is far too thin for a 20-parameter tool with no output schema. It omits required credential semantics, filter parameter meanings, result limits, and response expectations. An agent cannot make a confident, correct call from this description alone.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and 20 parameters, the description needed to compensate, but it explains none of the parameters. Even the required profile_id and profile_secret are not mentioned. This is a major gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool recommends events and specifies the personalization condition: a saved Dizko profile. This distinguishes it from the sibling 'recommend_events' tool, which likely serves non-personalized recommendations. The verb and resource are clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear trigger condition: use this when a user wants personalized recommendations with a saved Dizko profile. It does not explicitly name alternatives or say when not to use it, but the context is strong enough for an agent to route this tool correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
record_event_feedbackRecord Event FeedbackBInspect
Use this when a user wants Dizko to learn from their rating or notes about an event.
| Name | Required | Description | Default |
|---|---|---|---|
| liked | No | ||
| notes | No | ||
| rating | No | ||
| event_id | Yes | ||
| profile_id | Yes | ||
| attended_at | No | ||
| profile_secret | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a write operation (readOnlyHint=false) and non-idempotent, so the description adds little beyond that. 'Learn' is vague and does not disclose whether feedback is appended, overwritten, or otherwise persisted, nor does it mention auth requirements or outcomes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with a clear when-clause, containing no wasted words. However, it is under-specified: the single sentence does not carry enough information to justify a higher structural score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter write tool with no output schema and unannotated parameters, the description is incomplete. It does not clarify which feedback fields are valid, why profile_secret is required, whether attended_at matters, or what the tool returns after recording.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate, but it only mentions 'rating or notes' and 'about an event.' It does not explain the 'liked' branch, the required profile_id/profile_secret, or the optional attended_at, leaving most parameter semantics to schema inference.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear trigger and purpose: record/learn from user feedback about an event. It is not a tautology and is distinguishable from siblings by focusing on writing feedback, though it omits the 'liked' option and does not explicitly differentiate from get_event_feedback_prompt.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Use this when a user wants Dizko to learn from their rating or notes about an event,' which gives a usable trigger context. However, it gives no exclusions, alternatives, or guidance about when to use sibling feedback-related tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
save_eventSave EventBIdempotentInspect
Use this when a user confirms they want to save one Dizko event to the connected user's account only after explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | ||
| confirmed | Yes | ||
| idempotency_key | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey that the operation is non-read-only and idempotent. The description adds useful context beyond annotations: it saves to the connected user's account and requires explicit confirmation before use. However, it doesn't explain what happens with a false 'confirmed' value, side effects, or why the idempotency key matters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It could be more structured by separating the usage condition from the confirmation condition, but it is appropriately concise for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple three-parameter tool with no output schema, the description covers the core use case and prerequisite. However, key parameter semantics are left to the schema (which lacks descriptions), and there is no mention of what the tool returns or how the idempotency key should be generated. It is minimally viable but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It indirectly addresses 'confirmed' by saying 'only after explicit confirmation,' but it provides no meaning for 'event_id' or 'idempotency_key.' An agent cannot infer from the description the role of the idempotency key or the expected value of 'confirmed' beyond a vague connection.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (save) and resource (one Dizko event) and clearly indicates the target is the connected user's account. It distinguishes itself from sibling tools like save_event_preferences or add_to_dizko_plan by focusing on an event save, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Use this when a user confirms they want to save one Dizko event' and adds the strong precondition 'only after explicit confirmation.' This gives clear guidance on when to invoke the tool, though it doesn't mention when not to use it or point to alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
save_event_preferencesSave Event PreferencesBInspect
Use this when a user wants to update a saved Dizko preference profile.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | ||
| consent | Yes | ||
| profile_id | Yes | ||
| preferences | Yes | ||
| profile_secret | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description only says 'update,' which aligns with readOnlyHint=false but adds no behavioral nuance. It does not disclose merge/replace semantics, consent/authentication requirements, or what happens to existing preferences, and the annotations do not fill that gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no filler, and it front-loads the usage trigger. It is appropriately short even though other dimensions need more content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with five parameters—including an auth secret, a consent flag, and a merge/replace mode—and no output schema, a purpose-only sentence is insufficient. An agent cannot safely call this tool without additional guidance on required arguments and behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description mentions none of the five parameters. Required fields like profile_secret and consent, plus the mode enum, are left entirely unexplained, so the description does not compensate for the schema gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('update') and the resource ('a saved Dizko preference profile'), distinguishing it from creating or deleting a profile. It does not explicitly name sibling tools, so it misses the top score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Use this when a user wants to update a saved Dizko preference profile' provides an explicit trigger condition. It gives clear context, though it does not mention when not to use it or explicitly point to create/delete alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_eventsSearch EventsCRead-onlyIdempotentInspect
Use this when a user wants filtered live events.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| free | No | ||
| vibe | No | ||
| when | No | ||
| avoid | No | ||
| limit | No | ||
| pride | No | ||
| query | No | ||
| venue | No | ||
| cursor | No | ||
| genres | No | ||
| offset | No | ||
| date_to | No | ||
| promoter | No | ||
| date_from | No | ||
| featuring | No | ||
| max_price | No | ||
| price_max | No | ||
| price_min | No | ||
| event_types | No | ||
| result_limit | No | ||
| neighborhoods | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is read-only and non-destructive, but the description adds no behavioral context beyond 'filtered live events.' It does not disclose pagination behavior, return format, optionality of filters, or how filtering interprets multiple parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. However, for a tool with 22 optional parameters and no schema-level descriptions, this brevity crosses into under-specification rather than effective conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The definition is not complete enough for an agent to call this tool correctly. The description provides only a minimal usage trigger, while the schema leaves all parameter semantics unexplained, there is no output schema, and sibling tools overlap in purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 22 parameters with 0% description coverage, and the description names none of them. It does not explain the meaning of ambiguous parameters like price_max vs max_price, limit vs result_limit, cursor vs offset, or the expected formats for date and array fields.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description conveys a clear verb and resource: it is for searching/filtering live events. It provides some differentiation from sibling tools like recommend_events by emphasizing 'filtered,' though it does not explicitly name or distinguish from related search tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives a clear condition for use: 'when a user wants filtered live events.' However, it does not mention when to use alternatives such as recommend_events, get_artist_events, or find_scene_entities, so exclusion guidance is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- Added
bin_event - Added
get_taste_profile
2 tool updates
- Added
add_to_dizko_plan - Added
save_event
5 tool updates
- Added
get_artist - Added
get_venue - Changed
plan_night2 fields changed- added
Input schema / additionalPropertiesAdded value: +false - added
Input schema / properties / cursorAdded value: +{ + "type": "string" +}
- Changed
recommend_events2 fields changed- added
Input schema / additionalPropertiesAdded value: +false - added
Input schema / properties / cursorAdded value: +{ + "type": "string" +}
- Changed
search_events2 fields changed- added
Input schema / additionalPropertiesAdded value: +false - added
Input schema / properties / cursorAdded value: +{ + "type": "string" +}
1 tool update
- Added
get_artist_page
23 tool updates
- Changed
create_event_calendar_file3 fields changed- removed
Input schema / properties / event_id / descriptionRemoved value: -"Event id returned by search, recommendations, plan_night, get_event, or a ticket quote." - removed
Input schema / properties / status / descriptionRemoved value: -"Calendar status, for example CONFIRMED or TENTATIVE." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "calendar_event": { - "properties": { - "city": { - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_url": { - "type": [ - "string", - "null" - ] - }, - "ics_content": { - "type": "string" - }, - "ics_filename": { - "type": "string" - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "status": { - "type": "string" - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": [ - "string", - "null" - ] - }, - "uid": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "uid", - "ics_filename", - "ics_content" - ], - "type": [ - "object", - "null" - ] - } - }, - "required": [ - "calendar_event" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
create_event_preference_profile6 fields changed- added
Input schema / $defsAdded value: +{ + "dayPreference": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "additionalProperties": { + "$ref": "#/$defs/dayPreference" + }, + "propertyNames": { + "enum": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } +} - removed
Input schema / properties / consent / descriptionRemoved value: -"Must be true only after the user agreed to save preferences." - added
Input schema / properties / preferences / $refAdded value: +"#/$defs/preferences" - removed
Input schema / properties / preferences / propertiesRemoved value: -{ - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } -} - removed
Input schema / properties / preferences / typeRemoved value: -"object" - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "access_instructions": { - "properties": { - "deletion_instruction": { - "type": "string" - }, - "keep_private": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "profile_secret": { - "type": [ - "string", - "null" - ] - }, - "profile_secret_returned_now": { - "type": "boolean" - }, - "purpose": { - "type": "string" - }, - "reuse_instruction": { - "type": "string" - } - }, - "required": [ - "profile_id", - "profile_secret", - "profile_secret_returned_now", - "keep_private", - "purpose", - "reuse_instruction", - "deletion_instruction" - ], - "type": "object" - }, - "assistant_instruction": { - "type": "string" - }, - "created": { - "type": "boolean" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "profile_secret": { - "description": "Returned once when a profile is created. The service stores only a hash.", - "type": "string" - } - }, - "required": [ - "created" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
delete_event_preferences4 fields changed- removed
Input schema / properties / confirm_delete / descriptionRemoved value: -"Must be true only after the user confirms deletion of Dizko connector preferences and feedback history." - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "deleted": { - "type": "boolean" - } - }, - "required": [ - "deleted" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Added
find_scene_entities - Changed
get_artist_events9 fields changed- removed
Input schema / properties / artists / descriptionRemoved value: -"Artist, DJ, performer, or comedian names to look up (max 8 per call)." - removed
Input schema / properties / city / descriptionRemoved value: -"Optional city to scope the search; omit to search all cities." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Optional inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / limit_per_artist / defaultRemoved value: -5 - removed
Input schema / properties / limit_per_artist / descriptionRemoved value: -"Upcoming events per artist (max 10)." - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Optional Dizko preference profile id. When artists is omitted, the profile's saved featuring list is used." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "artists": { - "items": { - "properties": { - "artist": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "artist", - "count", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "assistant_instruction": { - "type": "string" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "date_from": { - "type": "string" - }, - "date_to": { - "type": [ - "string", - "null" - ] - }, - "dropped_artists": { - "items": { - "type": "string" - }, - "type": "array" - }, - "not_found": { - "items": { - "type": "string" - }, - "type": "array" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - } - }, - "required": [ - "artists", - "not_found" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_city_pulse6 fields changed- removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today." - removed
Input schema / properties / days / defaultRemoved value: -7 - removed
Input schema / properties / days / descriptionRemoved value: -"Window length in days starting from date_from (max 14)." - removed
Input schema / properties / event_types / descriptionRemoved value: -"Optional event-type filter, for example party." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "busiest_nights": { - "items": { - "properties": { - "date": { - "type": "string" - }, - "events": { - "type": "number" - }, - "weekday": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "date", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "date_from": { - "type": "string" - }, - "date_to": { - "type": "string" - }, - "days": { - "type": "number" - }, - "free_events_in_sample": { - "type": "number" - }, - "headliners": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "sample_note": { - "type": "string" - }, - "sample_size": { - "type": "number" - }, - "top_genres": { - "items": { - "properties": { - "events": { - "type": "number" - }, - "genre": { - "type": "string" - } - }, - "required": [ - "genre", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "top_venues": { - "items": { - "properties": { - "events": { - "type": "number" - }, - "total_attendance": { - "type": "number" - }, - "venue": { - "type": "string" - } - }, - "required": [ - "venue", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "total_available": { - "type": "number" - } - }, - "required": [ - "date_from", - "date_to", - "total_available", - "sample_size", - "busiest_nights", - "top_venues", - "top_genres", - "headliners" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_daily_roundup13 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in the ranking." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date / descriptionRemoved value: -"Target day in YYYY-MM-DD format. Defaults to today." - removed
Input schema / properties / limit / defaultRemoved value: -100 - removed
Input schema / properties / limit / descriptionRemoved value: -"How many of the day's events to fetch and rank." - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Optional Dizko preference profile id. Supply it with profile_secret to personalize the picks with saved, learned, and per-day preferences." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - removed
Input schema / properties / section_limit / defaultRemoved value: -5 - removed
Input schema / properties / section_limit / descriptionRemoved value: -"Events per category section (max 10)." - removed
Input schema / properties / top_limit / defaultRemoved value: -5 - removed
Input schema / properties / top_limit / descriptionRemoved value: -"Top picks to feature (max 10)." - removed
Input schema / properties / when / descriptionRemoved value: -"Alternative date preset: today, tonight, or tomorrow." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "date": { - "type": "string" - }, - "personalization": { - "properties": { - "applied_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "current_request": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "saved_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "source": { - "type": "string" - } - }, - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "sections": { - "items": { - "properties": { - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "key": { - "type": "string" - }, - "title": { - "type": "string" - } - }, - "required": [ - "key", - "title", - "count", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "top_picks": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "total_available": { - "type": "number" - }, - "weekday": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "date", - "total_available", - "top_picks", - "sections" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event2 fields changed- removed
Input schema / properties / id / descriptionRemoved value: -"Event id." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event_feedback_prompt2 fields changed- removed
Input schema / properties / attended_at / descriptionRemoved value: -"Optional ISO date/time or YYYY-MM-DD the user attended or planned to attend." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "attended_at": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "event", - "attended_at", - "questions", - "assistant_instruction" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event_preferences3 fields changed- removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "access_instructions": { - "properties": { - "deletion_instruction": { - "type": "string" - }, - "keep_private": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "profile_secret": { - "type": [ - "string", - "null" - ] - }, - "profile_secret_returned_now": { - "type": "boolean" - }, - "purpose": { - "type": "string" - }, - "reuse_instruction": { - "type": "string" - } - }, - "required": [ - "profile_id", - "profile_secret", - "profile_secret_returned_now", - "keep_private", - "purpose", - "reuse_instruction", - "deletion_instruction" - ], - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - } - }, - "required": [ - "profile" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event_search_followups14 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_toRemoved value: -{ - "description": "Inclusive end date in YYYY-MM-DD format.", - "type": "string" -} - removed
Input schema / properties / featuringRemoved value: -{ - "description": "Artist or performer name.", - "type": "string" -} - removed
Input schema / properties / limitRemoved value: -{ - "default": 12, - "description": "Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more.", - "type": "number" -} - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offsetRemoved value: -{ - "default": 0, - "type": "number" -} - removed
Input schema / properties / price_minRemoved value: -{ - "type": "number" -} - removed
Input schema / properties / prideRemoved value: -{ - "type": "boolean" -} - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limitRemoved value: -{ - "default": 10, - "type": "number" -} - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "missing_fields": { - "items": { - "type": "string" - }, - "type": "array" - }, - "needs_followup": { - "type": "boolean" - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - }, - "search_args_hint": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - } - }, - "required": [ - "needs_followup", - "missing_fields", - "questions", - "search_args_hint", - "assistant_instruction" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_preference_onboarding2 fields changed- removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id if already known." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "consent_required": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "consent_required", - "questions", - "assistant_instruction" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_ticket_offers2 fields changed- removed
Input schema / properties / event_id / descriptionRemoved value: -"Event id returned by search, recommendations, plan_night, or get_event." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "offers": { - "items": { - "properties": { - "autonomous_purchase_supported": { - "type": "boolean" - }, - "availability_status": { - "type": "string" - }, - "currency": { - "type": [ - "string", - "null" - ] - }, - "estimated_price": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "fees_included": { - "type": "boolean" - }, - "notes": { - "items": { - "type": "string" - }, - "type": "array" - }, - "offer_id": { - "type": "string" - }, - "price_guaranteed": { - "type": "boolean" - }, - "provider": { - "type": [ - "string", - "null" - ] - }, - "purchase_mode": { - "type": "string" - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "offer_id", - "event", - "purchase_mode", - "autonomous_purchase_supported", - "availability_status" - ], - "type": "object" - }, - "type": "array" - }, - "policy": { - "properties": { - "autonomous_purchase_available": { - "type": "boolean" - }, - "current_default_behavior": { - "type": "string" - }, - "hard_rules": { - "items": { - "type": "string" - }, - "type": "array" - }, - "provider_contract": { - "type": "string" - }, - "supported_modes": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "required": [ - "event", - "count", - "offers", - "policy" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_ticket_purchase_policy1 field changed- changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "autonomous_purchase_available": { - "type": "boolean" - }, - "current_default_behavior": { - "type": "string" - }, - "hard_rules": { - "items": { - "type": "string" - }, - "type": "array" - }, - "provider_contract": { - "type": "string" - }, - "supported_modes": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "autonomous_purchase_available", - "supported_modes", - "hard_rules", - "current_default_behavior" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Added
list_cities - Changed
plan_night16 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / featuring / descriptionRemoved value: -"Artist or performer name." - removed
Input schema / properties / limit / defaultRemoved value: -12 - removed
Input schema / properties / limit / descriptionRemoved value: -"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offset / defaultRemoved value: -0 - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Optional Dizko preference profile id. Supply it with profile_secret to apply saved and learned taste." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - added
Input schema / properties / promoterAdded value: +{ + "type": "string" +} - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "distance_from_primary_km": { - "type": [ - "number", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "plan_note": { - "type": "string" - }, - "plan_role": { - "enum": [ - "primary", - "nearby_fallback", - "later_fallback", - "alternate" - ], - "type": "string" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "personalization": { - "properties": { - "applied_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "current_request": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "saved_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "source": { - "type": "string" - } - }, - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "strategy": { - "type": "string" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "city", - "when", - "strategy", - "events" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
purchase_ticket_order5 fields changed- removed
Input schema / properties / confirmation_text / descriptionRemoved value: -"User's explicit written confirmation, including buy/purchase, quantity, and max_total when present." - removed
Input schema / properties / idempotency_key / descriptionRemoved value: -"Optional idempotency key for integrated purchase providers." - removed
Input schema / properties / quote_token / descriptionRemoved value: -"Opaque quote token returned by quote_ticket_order." - removed
Input schema / properties / user_payment_profile_id / descriptionRemoved value: -"Provider-specific saved payment profile id, when an integrated provider supports autonomous purchase." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "calendar_event": { - "properties": { - "city": { - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_url": { - "type": [ - "string", - "null" - ] - }, - "ics_content": { - "type": "string" - }, - "ics_filename": { - "type": "string" - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "status": { - "type": "string" - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": [ - "string", - "null" - ] - }, - "uid": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "uid", - "ics_filename", - "ics_content" - ], - "type": [ - "object", - "null" - ] - }, - "checkout_url": { - "type": [ - "string", - "null" - ] - }, - "confirmation_prompt": { - "type": "string" - }, - "delivery_email": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "order_id": { - "type": [ - "string", - "null" - ] - }, - "provider_response": { - "additionalProperties": true, - "type": [ - "object", - "null" - ] - }, - "purchased": { - "type": "boolean" - }, - "quote": { - "properties": { - "autonomous_purchase_supported": { - "type": "boolean" - }, - "availability_status": { - "type": "string" - }, - "checkout_url": { - "type": [ - "string", - "null" - ] - }, - "currency": { - "type": [ - "string", - "null" - ] - }, - "estimated_price": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "expires_at": { - "type": "string" - }, - "fees_included": { - "type": "boolean" - }, - "max_total": { - "type": [ - "number", - "null" - ] - }, - "offer_id": { - "type": "string" - }, - "price_guaranteed": { - "type": "boolean" - }, - "provider": { - "type": [ - "string", - "null" - ] - }, - "purchase_mode": { - "type": "string" - }, - "quantity": { - "type": "number" - }, - "quote_id": { - "type": "string" - }, - "refund_terms": { - "type": "string" - }, - "stop_conditions": { - "items": { - "type": "string" - }, - "type": "array" - }, - "ticket_type": { - "type": "string" - } - }, - "type": [ - "object", - "null" - ] - }, - "receipt_url": { - "type": [ - "string", - "null" - ] - }, - "status": { - "type": "string" - }, - "ticket_delivery_status": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "purchased", - "status" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
quote_ticket_order8 fields changed- removed
Input schema / properties / currency / descriptionRemoved value: -"Preferred currency for max_total, for example USD." - removed
Input schema / properties / event_id / descriptionRemoved value: -"Event id returned by search, recommendations, plan_night, or get_event." - removed
Input schema / properties / max_total / descriptionRemoved value: -"Maximum all-in total the user authorizes before the agent must stop and ask again." - removed
Input schema / properties / offer_id / descriptionRemoved value: -"Optional offer_id returned by get_ticket_offers." - removed
Input schema / properties / quantity / defaultRemoved value: -1 - removed
Input schema / properties / refund_terms / descriptionRemoved value: -"Minimum refund/transfer terms the user accepts." - removed
Input schema / properties / ticket_type / descriptionRemoved value: -"Requested ticket type, for example GA, balcony, seated, VIP, or best available." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "confirmation_prompt": { - "type": "string" - }, - "confirmation_required": { - "type": "boolean" - }, - "error": { - "type": "string" - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "policy": { - "properties": { - "autonomous_purchase_available": { - "type": "boolean" - }, - "current_default_behavior": { - "type": "string" - }, - "hard_rules": { - "items": { - "type": "string" - }, - "type": "array" - }, - "provider_contract": { - "type": "string" - }, - "supported_modes": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "quote": { - "properties": { - "autonomous_purchase_supported": { - "type": "boolean" - }, - "availability_status": { - "type": "string" - }, - "checkout_url": { - "type": [ - "string", - "null" - ] - }, - "currency": { - "type": [ - "string", - "null" - ] - }, - "estimated_price": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "expires_at": { - "type": "string" - }, - "fees_included": { - "type": "boolean" - }, - "max_total": { - "type": [ - "number", - "null" - ] - }, - "offer_id": { - "type": "string" - }, - "price_guaranteed": { - "type": "boolean" - }, - "provider": { - "type": [ - "string", - "null" - ] - }, - "purchase_mode": { - "type": "string" - }, - "quantity": { - "type": "number" - }, - "quote_id": { - "type": "string" - }, - "refund_terms": { - "type": "string" - }, - "stop_conditions": { - "items": { - "type": "string" - }, - "type": "array" - }, - "ticket_type": { - "type": "string" - } - }, - "type": [ - "object", - "null" - ] - }, - "quote_token": { - "type": "string" - }, - "quoted": { - "type": "boolean" - } - }, - "required": [ - "quoted" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
recommend_events14 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / featuring / descriptionRemoved value: -"Artist or performer name." - removed
Input schema / properties / limit / defaultRemoved value: -12 - removed
Input schema / properties / limit / descriptionRemoved value: -"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offset / defaultRemoved value: -0 - added
Input schema / properties / promoterAdded value: +{ + "type": "string" +} - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "count", - "events" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
recommend_events_for_user4 fields changed- removed
Input schema / properties / limit / defaultRemoved value: -50 - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "message": { - "type": "string" - }, - "onboarding_needed": { - "type": "boolean" - }, - "personalization": { - "properties": { - "applied_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "current_request": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "saved_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "source": { - "type": "string" - } - }, - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
record_event_feedback3 fields changed- removed
Input schema / properties / attended_at / descriptionRemoved value: -"ISO date/time or YYYY-MM-DD." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "feedback": { - "properties": { - "attended_at": { - "type": [ - "string", - "null" - ] - }, - "created_at": { - "type": "string" - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "event_id": { - "type": "string" - }, - "liked": { - "type": [ - "boolean", - "null" - ] - }, - "notes": { - "type": [ - "string", - "null" - ] - }, - "rating": { - "type": [ - "number", - "null" - ] - } - }, - "type": "object" - }, - "follow_up": { - "type": "string" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "saved": { - "type": "boolean" - } - }, - "required": [ - "saved", - "feedback", - "profile" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
save_event_preferences9 fields changed- added
Input schema / $defsAdded value: +{ + "dayPreference": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "additionalProperties": { + "$ref": "#/$defs/dayPreference" + }, + "propertyNames": { + "enum": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } +} - removed
Input schema / properties / consent / descriptionRemoved value: -"Must be true only after the user agreed to save preferences." - removed
Input schema / properties / mode / defaultRemoved value: -"merge" - added
Input schema / properties / preferences / $refAdded value: +"#/$defs/preferences" - removed
Input schema / properties / preferences / propertiesRemoved value: -{ - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } -} - removed
Input schema / properties / preferences / typeRemoved value: -"object" - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "access_instructions": { - "properties": { - "deletion_instruction": { - "type": "string" - }, - "keep_private": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "profile_secret": { - "type": [ - "string", - "null" - ] - }, - "profile_secret_returned_now": { - "type": "boolean" - }, - "purpose": { - "type": "string" - }, - "reuse_instruction": { - "type": "string" - } - }, - "required": [ - "profile_id", - "profile_secret", - "profile_secret_returned_now", - "keep_private", - "purpose", - "reuse_instruction", - "deletion_instruction" - ], - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "saved": { - "type": "boolean" - } - }, - "required": [ - "saved" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
search_events14 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / featuring / descriptionRemoved value: -"Artist or performer name." - removed
Input schema / properties / limit / defaultRemoved value: -12 - removed
Input schema / properties / limit / descriptionRemoved value: -"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offset / defaultRemoved value: -0 - added
Input schema / properties / promoterAdded value: +{ + "type": "string" +} - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "count", - "events" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
23 tool updates
- Changed
create_event_calendar_file3 fields changed- added
Input schema / properties / event_id / descriptionAdded value: +"Event id returned by search, recommendations, plan_night, get_event, or a ticket quote." - added
Input schema / properties / status / descriptionAdded value: +"Calendar status, for example CONFIRMED or TENTATIVE." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "calendar_event": { + "properties": { + "city": { + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_url": { + "type": [ + "string", + "null" + ] + }, + "ics_content": { + "type": "string" + }, + "ics_filename": { + "type": "string" + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "status": { + "type": "string" + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": [ + "string", + "null" + ] + }, + "uid": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "uid", + "ics_filename", + "ics_content" + ], + "type": [ + "object", + "null" + ] + } + }, + "required": [ + "calendar_event" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
create_event_preference_profile6 fields changed- removed
Input schema / $defsRemoved value: -{ - "dayPreference": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "additionalProperties": { - "$ref": "#/$defs/dayPreference" - }, - "propertyNames": { - "enum": [ - "monday", - "tuesday", - "wednesday", - "thursday", - "friday", - "saturday", - "sunday" - ] - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } -} - added
Input schema / properties / consent / descriptionAdded value: +"Must be true only after the user agreed to save preferences." - removed
Input schema / properties / preferences / $refRemoved value: -"#/$defs/preferences" - added
Input schema / properties / preferences / propertiesAdded value: +{ + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } +} - added
Input schema / properties / preferences / typeAdded value: +"object" - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "access_instructions": { + "properties": { + "deletion_instruction": { + "type": "string" + }, + "keep_private": { + "type": "boolean" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "profile_secret": { + "type": [ + "string", + "null" + ] + }, + "profile_secret_returned_now": { + "type": "boolean" + }, + "purpose": { + "type": "string" + }, + "reuse_instruction": { + "type": "string" + } + }, + "required": [ + "profile_id", + "profile_secret", + "profile_secret_returned_now", + "keep_private", + "purpose", + "reuse_instruction", + "deletion_instruction" + ], + "type": "object" + }, + "assistant_instruction": { + "type": "string" + }, + "created": { + "type": "boolean" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + }, + "profile_secret": { + "description": "Returned once when a profile is created. The service stores only a hash.", + "type": "string" + } + }, + "required": [ + "created" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
delete_event_preferences4 fields changed- added
Input schema / properties / confirm_delete / descriptionAdded value: +"Must be true only after the user confirms deletion of Dizko connector preferences and feedback history." - added
Input schema / properties / profile_id / descriptionAdded value: +"Stable user/profile id." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "deleted": { + "type": "boolean" + } + }, + "required": [ + "deleted" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Removed
find_scene_entities - Changed
get_artist_events9 fields changed- added
Input schema / properties / artists / descriptionAdded value: +"Artist, DJ, performer, or comedian names to look up (max 8 per call)." - added
Input schema / properties / city / descriptionAdded value: +"Optional city to scope the search; omit to search all cities." - added
Input schema / properties / date_from / descriptionAdded value: +"Inclusive start date in YYYY-MM-DD format. Defaults to today." - added
Input schema / properties / date_to / descriptionAdded value: +"Optional inclusive end date in YYYY-MM-DD format." - added
Input schema / properties / limit_per_artist / defaultAdded value: +5 - added
Input schema / properties / limit_per_artist / descriptionAdded value: +"Upcoming events per artist (max 10)." - added
Input schema / properties / profile_id / descriptionAdded value: +"Optional Dizko preference profile id. When artists is omitted, the profile's saved featuring list is used." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "artists": { + "items": { + "properties": { + "artist": { + "type": "string" + }, + "count": { + "type": "number" + }, + "events": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "artist", + "count", + "events" + ], + "type": "object" + }, + "type": "array" + }, + "assistant_instruction": { + "type": "string" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "date_from": { + "type": "string" + }, + "date_to": { + "type": [ + "string", + "null" + ] + }, + "dropped_artists": { + "items": { + "type": "string" + }, + "type": "array" + }, + "not_found": { + "items": { + "type": "string" + }, + "type": "array" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + } + }, + "required": [ + "artists", + "not_found" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_city_pulse6 fields changed- added
Input schema / properties / city / descriptionAdded value: +"City name, for example berlin or new york." - added
Input schema / properties / date_from / descriptionAdded value: +"Inclusive start date in YYYY-MM-DD format. Defaults to today." - added
Input schema / properties / days / defaultAdded value: +7 - added
Input schema / properties / days / descriptionAdded value: +"Window length in days starting from date_from (max 14)." - added
Input schema / properties / event_types / descriptionAdded value: +"Optional event-type filter, for example party." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "busiest_nights": { + "items": { + "properties": { + "date": { + "type": "string" + }, + "events": { + "type": "number" + }, + "weekday": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "date", + "events" + ], + "type": "object" + }, + "type": "array" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "date_from": { + "type": "string" + }, + "date_to": { + "type": "string" + }, + "days": { + "type": "number" + }, + "free_events_in_sample": { + "type": "number" + }, + "headliners": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + }, + "sample_note": { + "type": "string" + }, + "sample_size": { + "type": "number" + }, + "top_genres": { + "items": { + "properties": { + "events": { + "type": "number" + }, + "genre": { + "type": "string" + } + }, + "required": [ + "genre", + "events" + ], + "type": "object" + }, + "type": "array" + }, + "top_venues": { + "items": { + "properties": { + "events": { + "type": "number" + }, + "total_attendance": { + "type": "number" + }, + "venue": { + "type": "string" + } + }, + "required": [ + "venue", + "events" + ], + "type": "object" + }, + "type": "array" + }, + "total_available": { + "type": "number" + } + }, + "required": [ + "date_from", + "date_to", + "total_available", + "sample_size", + "busiest_nights", + "top_venues", + "top_genres", + "headliners" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_daily_roundup13 fields changed- added
Input schema / properties / avoid / descriptionAdded value: +"Terms to penalize in the ranking." - added
Input schema / properties / city / descriptionAdded value: +"City name, for example berlin or new york." - added
Input schema / properties / date / descriptionAdded value: +"Target day in YYYY-MM-DD format. Defaults to today." - added
Input schema / properties / limit / defaultAdded value: +100 - added
Input schema / properties / limit / descriptionAdded value: +"How many of the day's events to fetch and rank." - added
Input schema / properties / profile_id / descriptionAdded value: +"Optional Dizko preference profile id. Supply it with profile_secret to personalize the picks with saved, learned, and per-day preferences." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - added
Input schema / properties / section_limit / defaultAdded value: +5 - added
Input schema / properties / section_limit / descriptionAdded value: +"Events per category section (max 10)." - added
Input schema / properties / top_limit / defaultAdded value: +5 - added
Input schema / properties / top_limit / descriptionAdded value: +"Top picks to feature (max 10)." - added
Input schema / properties / when / descriptionAdded value: +"Alternative date preset: today, tonight, or tomorrow." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "date": { + "type": "string" + }, + "personalization": { + "properties": { + "applied_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "current_request": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": [ + "boolean", + "null" + ] + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price_max": { + "type": [ + "number", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + }, + "when": { + "type": [ + "string", + "null" + ] + } + }, + "type": "object" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "saved_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source": { + "type": "string" + } + }, + "type": "object" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + }, + "sections": { + "items": { + "properties": { + "count": { + "type": "number" + }, + "events": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "recommendation_reasons": { + "items": { + "type": "string" + }, + "type": "array" + }, + "recommendation_score": { + "type": "number" + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + }, + "key": { + "type": "string" + }, + "title": { + "type": "string" + } + }, + "required": [ + "key", + "title", + "count", + "events" + ], + "type": "object" + }, + "type": "array" + }, + "top_picks": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "recommendation_reasons": { + "items": { + "type": "string" + }, + "type": "array" + }, + "recommendation_score": { + "type": "number" + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + }, + "total_available": { + "type": "number" + }, + "weekday": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "date", + "total_available", + "top_picks", + "sections" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_event2 fields changed- added
Input schema / properties / id / descriptionAdded value: +"Event id." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "app_download_url": { + "description": "Dizko iPhone app landing page.", + "type": "string" + }, + "assistant_instruction": { + "type": "string" + }, + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_event_feedback_prompt2 fields changed- added
Input schema / properties / attended_at / descriptionAdded value: +"Optional ISO date/time or YYYY-MM-DD the user attended or planned to attend." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "attended_at": { + "type": [ + "string", + "null" + ] + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "questions": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "event", + "attended_at", + "questions", + "assistant_instruction" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_event_preferences3 fields changed- added
Input schema / properties / profile_id / descriptionAdded value: +"Stable user/profile id." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "access_instructions": { + "properties": { + "deletion_instruction": { + "type": "string" + }, + "keep_private": { + "type": "boolean" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "profile_secret": { + "type": [ + "string", + "null" + ] + }, + "profile_secret_returned_now": { + "type": "boolean" + }, + "purpose": { + "type": "string" + }, + "reuse_instruction": { + "type": "string" + } + }, + "required": [ + "profile_id", + "profile_secret", + "profile_secret_returned_now", + "keep_private", + "purpose", + "reuse_instruction", + "deletion_instruction" + ], + "type": "object" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + } + }, + "required": [ + "profile" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_event_search_followups14 fields changed- added
Input schema / properties / avoid / descriptionAdded value: +"Terms to penalize in recommendations." - added
Input schema / properties / city / descriptionAdded value: +"City name, for example berlin or new york." - added
Input schema / properties / date_from / descriptionAdded value: +"Inclusive start date in YYYY-MM-DD format." - added
Input schema / properties / date_toAdded value: +{ + "description": "Inclusive end date in YYYY-MM-DD format.", + "type": "string" +} - added
Input schema / properties / featuringAdded value: +{ + "description": "Artist or performer name.", + "type": "string" +} - added
Input schema / properties / limitAdded value: +{ + "default": 12, + "description": "Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more.", + "type": "number" +} - added
Input schema / properties / max_price / descriptionAdded value: +"Preference hint used by recommend_events and plan_night." - added
Input schema / properties / offsetAdded value: +{ + "default": 0, + "type": "number" +} - added
Input schema / properties / price_minAdded value: +{ + "type": "number" +} - added
Input schema / properties / prideAdded value: +{ + "type": "boolean" +} - added
Input schema / properties / query / descriptionAdded value: +"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - added
Input schema / properties / result_limitAdded value: +{ + "default": 10, + "type": "number" +} - added
Input schema / properties / when / descriptionAdded value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "missing_fields": { + "items": { + "type": "string" + }, + "type": "array" + }, + "needs_followup": { + "type": "boolean" + }, + "questions": { + "items": { + "type": "string" + }, + "type": "array" + }, + "search_args_hint": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": [ + "boolean", + "null" + ] + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price_max": { + "type": [ + "number", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + }, + "when": { + "type": [ + "string", + "null" + ] + } + }, + "type": "object" + } + }, + "required": [ + "needs_followup", + "missing_fields", + "questions", + "search_args_hint", + "assistant_instruction" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_preference_onboarding2 fields changed- added
Input schema / properties / profile_id / descriptionAdded value: +"Stable user/profile id if already known." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "consent_required": { + "type": "boolean" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "questions": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "consent_required", + "questions", + "assistant_instruction" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_ticket_offers2 fields changed- added
Input schema / properties / event_id / descriptionAdded value: +"Event id returned by search, recommendations, plan_night, or get_event." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "count": { + "type": "number" + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "offers": { + "items": { + "properties": { + "autonomous_purchase_supported": { + "type": "boolean" + }, + "availability_status": { + "type": "string" + }, + "currency": { + "type": [ + "string", + "null" + ] + }, + "estimated_price": { + "type": [ + "string", + "null" + ] + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "fees_included": { + "type": "boolean" + }, + "notes": { + "items": { + "type": "string" + }, + "type": "array" + }, + "offer_id": { + "type": "string" + }, + "price_guaranteed": { + "type": "boolean" + }, + "provider": { + "type": [ + "string", + "null" + ] + }, + "purchase_mode": { + "type": "string" + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "offer_id", + "event", + "purchase_mode", + "autonomous_purchase_supported", + "availability_status" + ], + "type": "object" + }, + "type": "array" + }, + "policy": { + "properties": { + "autonomous_purchase_available": { + "type": "boolean" + }, + "current_default_behavior": { + "type": "string" + }, + "hard_rules": { + "items": { + "type": "string" + }, + "type": "array" + }, + "provider_contract": { + "type": "string" + }, + "supported_modes": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "event", + "count", + "offers", + "policy" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
get_ticket_purchase_policy1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "autonomous_purchase_available": { + "type": "boolean" + }, + "current_default_behavior": { + "type": "string" + }, + "hard_rules": { + "items": { + "type": "string" + }, + "type": "array" + }, + "provider_contract": { + "type": "string" + }, + "supported_modes": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "autonomous_purchase_available", + "supported_modes", + "hard_rules", + "current_default_behavior" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Removed
list_cities - Changed
plan_night16 fields changed- added
Input schema / properties / avoid / descriptionAdded value: +"Terms to penalize in recommendations." - added
Input schema / properties / city / descriptionAdded value: +"City name, for example berlin or new york." - added
Input schema / properties / date_from / descriptionAdded value: +"Inclusive start date in YYYY-MM-DD format." - added
Input schema / properties / date_to / descriptionAdded value: +"Inclusive end date in YYYY-MM-DD format." - added
Input schema / properties / featuring / descriptionAdded value: +"Artist or performer name." - added
Input schema / properties / limit / defaultAdded value: +12 - added
Input schema / properties / limit / descriptionAdded value: +"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - added
Input schema / properties / max_price / descriptionAdded value: +"Preference hint used by recommend_events and plan_night." - added
Input schema / properties / offset / defaultAdded value: +0 - added
Input schema / properties / profile_id / descriptionAdded value: +"Optional Dizko preference profile id. Supply it with profile_secret to apply saved and learned taste." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - removed
Input schema / properties / promoterRemoved value: -{ - "type": "string" -} - added
Input schema / properties / query / descriptionAdded value: +"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - added
Input schema / properties / result_limit / defaultAdded value: +10 - added
Input schema / properties / when / descriptionAdded value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "app_download_url": { + "description": "Dizko iPhone app landing page.", + "type": "string" + }, + "assistant_instruction": { + "type": "string" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "events": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "distance_from_primary_km": { + "type": [ + "number", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "plan_note": { + "type": "string" + }, + "plan_role": { + "enum": [ + "primary", + "nearby_fallback", + "later_fallback", + "alternate" + ], + "type": "string" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "recommendation_reasons": { + "items": { + "type": "string" + }, + "type": "array" + }, + "recommendation_score": { + "type": "number" + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + }, + "personalization": { + "properties": { + "applied_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "current_request": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": [ + "boolean", + "null" + ] + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price_max": { + "type": [ + "number", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + }, + "when": { + "type": [ + "string", + "null" + ] + } + }, + "type": "object" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "saved_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source": { + "type": "string" + } + }, + "type": "object" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + }, + "strategy": { + "type": "string" + }, + "when": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "city", + "when", + "strategy", + "events" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
purchase_ticket_order5 fields changed- added
Input schema / properties / confirmation_text / descriptionAdded value: +"User's explicit written confirmation, including buy/purchase, quantity, and max_total when present." - added
Input schema / properties / idempotency_key / descriptionAdded value: +"Optional idempotency key for integrated purchase providers." - added
Input schema / properties / quote_token / descriptionAdded value: +"Opaque quote token returned by quote_ticket_order." - added
Input schema / properties / user_payment_profile_id / descriptionAdded value: +"Provider-specific saved payment profile id, when an integrated provider supports autonomous purchase." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "calendar_event": { + "properties": { + "city": { + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_url": { + "type": [ + "string", + "null" + ] + }, + "ics_content": { + "type": "string" + }, + "ics_filename": { + "type": "string" + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "status": { + "type": "string" + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": [ + "string", + "null" + ] + }, + "uid": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "uid", + "ics_filename", + "ics_content" + ], + "type": [ + "object", + "null" + ] + }, + "checkout_url": { + "type": [ + "string", + "null" + ] + }, + "confirmation_prompt": { + "type": "string" + }, + "delivery_email": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "order_id": { + "type": [ + "string", + "null" + ] + }, + "provider_response": { + "additionalProperties": true, + "type": [ + "object", + "null" + ] + }, + "purchased": { + "type": "boolean" + }, + "quote": { + "properties": { + "autonomous_purchase_supported": { + "type": "boolean" + }, + "availability_status": { + "type": "string" + }, + "checkout_url": { + "type": [ + "string", + "null" + ] + }, + "currency": { + "type": [ + "string", + "null" + ] + }, + "estimated_price": { + "type": [ + "string", + "null" + ] + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "expires_at": { + "type": "string" + }, + "fees_included": { + "type": "boolean" + }, + "max_total": { + "type": [ + "number", + "null" + ] + }, + "offer_id": { + "type": "string" + }, + "price_guaranteed": { + "type": "boolean" + }, + "provider": { + "type": [ + "string", + "null" + ] + }, + "purchase_mode": { + "type": "string" + }, + "quantity": { + "type": "number" + }, + "quote_id": { + "type": "string" + }, + "refund_terms": { + "type": "string" + }, + "stop_conditions": { + "items": { + "type": "string" + }, + "type": "array" + }, + "ticket_type": { + "type": "string" + } + }, + "type": [ + "object", + "null" + ] + }, + "receipt_url": { + "type": [ + "string", + "null" + ] + }, + "status": { + "type": "string" + }, + "ticket_delivery_status": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "purchased", + "status" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
quote_ticket_order8 fields changed- added
Input schema / properties / currency / descriptionAdded value: +"Preferred currency for max_total, for example USD." - added
Input schema / properties / event_id / descriptionAdded value: +"Event id returned by search, recommendations, plan_night, or get_event." - added
Input schema / properties / max_total / descriptionAdded value: +"Maximum all-in total the user authorizes before the agent must stop and ask again." - added
Input schema / properties / offer_id / descriptionAdded value: +"Optional offer_id returned by get_ticket_offers." - added
Input schema / properties / quantity / defaultAdded value: +1 - added
Input schema / properties / refund_terms / descriptionAdded value: +"Minimum refund/transfer terms the user accepts." - added
Input schema / properties / ticket_type / descriptionAdded value: +"Requested ticket type, for example GA, balcony, seated, VIP, or best available." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "confirmation_prompt": { + "type": "string" + }, + "confirmation_required": { + "type": "boolean" + }, + "error": { + "type": "string" + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "policy": { + "properties": { + "autonomous_purchase_available": { + "type": "boolean" + }, + "current_default_behavior": { + "type": "string" + }, + "hard_rules": { + "items": { + "type": "string" + }, + "type": "array" + }, + "provider_contract": { + "type": "string" + }, + "supported_modes": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "quote": { + "properties": { + "autonomous_purchase_supported": { + "type": "boolean" + }, + "availability_status": { + "type": "string" + }, + "checkout_url": { + "type": [ + "string", + "null" + ] + }, + "currency": { + "type": [ + "string", + "null" + ] + }, + "estimated_price": { + "type": [ + "string", + "null" + ] + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "expires_at": { + "type": "string" + }, + "fees_included": { + "type": "boolean" + }, + "max_total": { + "type": [ + "number", + "null" + ] + }, + "offer_id": { + "type": "string" + }, + "price_guaranteed": { + "type": "boolean" + }, + "provider": { + "type": [ + "string", + "null" + ] + }, + "purchase_mode": { + "type": "string" + }, + "quantity": { + "type": "number" + }, + "quote_id": { + "type": "string" + }, + "refund_terms": { + "type": "string" + }, + "stop_conditions": { + "items": { + "type": "string" + }, + "type": "array" + }, + "ticket_type": { + "type": "string" + } + }, + "type": [ + "object", + "null" + ] + }, + "quote_token": { + "type": "string" + }, + "quoted": { + "type": "boolean" + } + }, + "required": [ + "quoted" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
recommend_events14 fields changed- added
Input schema / properties / avoid / descriptionAdded value: +"Terms to penalize in recommendations." - added
Input schema / properties / city / descriptionAdded value: +"City name, for example berlin or new york." - added
Input schema / properties / date_from / descriptionAdded value: +"Inclusive start date in YYYY-MM-DD format." - added
Input schema / properties / date_to / descriptionAdded value: +"Inclusive end date in YYYY-MM-DD format." - added
Input schema / properties / featuring / descriptionAdded value: +"Artist or performer name." - added
Input schema / properties / limit / defaultAdded value: +12 - added
Input schema / properties / limit / descriptionAdded value: +"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - added
Input schema / properties / max_price / descriptionAdded value: +"Preference hint used by recommend_events and plan_night." - added
Input schema / properties / offset / defaultAdded value: +0 - removed
Input schema / properties / promoterRemoved value: -{ - "type": "string" -} - added
Input schema / properties / query / descriptionAdded value: +"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - added
Input schema / properties / result_limit / defaultAdded value: +10 - added
Input schema / properties / when / descriptionAdded value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "app_download_url": { + "description": "Dizko iPhone app landing page.", + "type": "string" + }, + "assistant_instruction": { + "type": "string" + }, + "count": { + "type": "number" + }, + "events": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "recommendation_reasons": { + "items": { + "type": "string" + }, + "type": "array" + }, + "recommendation_score": { + "type": "number" + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "count", + "events" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
recommend_events_for_user4 fields changed- added
Input schema / properties / limit / defaultAdded value: +50 - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - added
Input schema / properties / result_limit / defaultAdded value: +10 - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "app_download_url": { + "description": "Dizko iPhone app landing page.", + "type": "string" + }, + "assistant_instruction": { + "type": "string" + }, + "count": { + "type": "number" + }, + "events": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "recommendation_reasons": { + "items": { + "type": "string" + }, + "type": "array" + }, + "recommendation_score": { + "type": "number" + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + }, + "message": { + "type": "string" + }, + "onboarding_needed": { + "type": "boolean" + }, + "personalization": { + "properties": { + "applied_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "current_request": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": [ + "boolean", + "null" + ] + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price_max": { + "type": [ + "number", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + }, + "when": { + "type": [ + "string", + "null" + ] + } + }, + "type": "object" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "saved_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source": { + "type": "string" + } + }, + "type": "object" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + }, + "questions": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
record_event_feedback3 fields changed- added
Input schema / properties / attended_at / descriptionAdded value: +"ISO date/time or YYYY-MM-DD." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "feedback": { + "properties": { + "attended_at": { + "type": [ + "string", + "null" + ] + }, + "created_at": { + "type": "string" + }, + "event": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "event_id": { + "type": "string" + }, + "liked": { + "type": [ + "boolean", + "null" + ] + }, + "notes": { + "type": [ + "string", + "null" + ] + }, + "rating": { + "type": [ + "number", + "null" + ] + } + }, + "type": "object" + }, + "follow_up": { + "type": "string" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + }, + "saved": { + "type": "boolean" + } + }, + "required": [ + "saved", + "feedback", + "profile" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
save_event_preferences9 fields changed- removed
Input schema / $defsRemoved value: -{ - "dayPreference": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "additionalProperties": { - "$ref": "#/$defs/dayPreference" - }, - "propertyNames": { - "enum": [ - "monday", - "tuesday", - "wednesday", - "thursday", - "friday", - "saturday", - "sunday" - ] - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } -} - added
Input schema / properties / consent / descriptionAdded value: +"Must be true only after the user agreed to save preferences." - added
Input schema / properties / mode / defaultAdded value: +"merge" - removed
Input schema / properties / preferences / $refRemoved value: -"#/$defs/preferences" - added
Input schema / properties / preferences / propertiesAdded value: +{ + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } +} - added
Input schema / properties / preferences / typeAdded value: +"object" - added
Input schema / properties / profile_id / descriptionAdded value: +"Stable user/profile id." - added
Input schema / properties / profile_secret / descriptionAdded value: +"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "access_instructions": { + "properties": { + "deletion_instruction": { + "type": "string" + }, + "keep_private": { + "type": "boolean" + }, + "profile_id": { + "type": [ + "string", + "null" + ] + }, + "profile_secret": { + "type": [ + "string", + "null" + ] + }, + "profile_secret_returned_now": { + "type": "boolean" + }, + "purpose": { + "type": "string" + }, + "reuse_instruction": { + "type": "string" + } + }, + "required": [ + "profile_id", + "profile_secret", + "profile_secret_returned_now", + "keep_private", + "purpose", + "reuse_instruction", + "deletion_instruction" + ], + "type": "object" + }, + "profile": { + "properties": { + "consent": { + "type": "boolean" + }, + "feedback_count": { + "type": "number" + }, + "learned_preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", + "properties": { + "friday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "monday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "saturday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "sunday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "thursday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "tuesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "wednesday": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "profile_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "required": [ + "profile_id", + "consent", + "preferences", + "feedback_count", + "updated_at" + ], + "type": "object" + }, + "saved": { + "type": "boolean" + } + }, + "required": [ + "saved" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
- Changed
search_events14 fields changed- added
Input schema / properties / avoid / descriptionAdded value: +"Terms to penalize in recommendations." - added
Input schema / properties / city / descriptionAdded value: +"City name, for example berlin or new york." - added
Input schema / properties / date_from / descriptionAdded value: +"Inclusive start date in YYYY-MM-DD format." - added
Input schema / properties / date_to / descriptionAdded value: +"Inclusive end date in YYYY-MM-DD format." - added
Input schema / properties / featuring / descriptionAdded value: +"Artist or performer name." - added
Input schema / properties / limit / defaultAdded value: +12 - added
Input schema / properties / limit / descriptionAdded value: +"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - added
Input schema / properties / max_price / descriptionAdded value: +"Preference hint used by recommend_events and plan_night." - added
Input schema / properties / offset / defaultAdded value: +0 - removed
Input schema / properties / promoterRemoved value: -{ - "type": "string" -} - added
Input schema / properties / query / descriptionAdded value: +"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - added
Input schema / properties / result_limit / defaultAdded value: +10 - added
Input schema / properties / when / descriptionAdded value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "anyOf": [ + { + "properties": { + "app_download_url": { + "description": "Dizko iPhone app landing page.", + "type": "string" + }, + "assistant_instruction": { + "type": "string" + }, + "count": { + "type": "number" + }, + "events": { + "items": { + "properties": { + "attendance_count": { + "type": [ + "number", + "null" + ] + }, + "calendar_url": { + "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", + "type": [ + "string", + "null" + ] + }, + "city": { + "type": [ + "string", + "null" + ] + }, + "description": { + "description": "Short one-line event description for display.", + "type": [ + "string", + "null" + ] + }, + "directions_url": { + "description": "Google Maps directions link. Offer as 'Get directions'.", + "type": [ + "string", + "null" + ] + }, + "ends_at": { + "type": [ + "string", + "null" + ] + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_url": { + "type": "string" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "type": "string" + }, + "lineup": { + "items": { + "type": "string" + }, + "type": "array" + }, + "price": { + "type": [ + "string", + "null" + ] + }, + "source": { + "type": [ + "string", + "null" + ] + }, + "starts_at": { + "type": [ + "string", + "null" + ] + }, + "ticket_url": { + "type": [ + "string", + "null" + ] + }, + "title": { + "type": "string" + }, + "venue": { + "type": [ + "string", + "null" + ] + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "id", + "title", + "event_url" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "count", + "events" + ], + "type": "object" + }, + { + "properties": { + "assistant_instruction": { + "type": "string" + }, + "cause": { + "type": [ + "string", + "null" + ] + }, + "classification": { + "type": [ + "string", + "null" + ] + }, + "code": { + "type": [ + "string", + "null" + ] + }, + "error": { + "type": "string" + }, + "hostname": { + "type": [ + "string", + "null" + ] + }, + "retryable": { + "type": "boolean" + }, + "status": { + "type": [ + "number", + "null" + ] + }, + "type": { + "type": "string" + }, + "url": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "error" + ], + "type": "object" + } + ], + "type": "object" +}
4 tool updates
- Added
find_scene_entities - Changed
plan_night1 field changed- added
Input schema / properties / promoterAdded value: +{ + "type": "string" +}
- Changed
recommend_events1 field changed- added
Input schema / properties / promoterAdded value: +{ + "type": "string" +}
- Changed
search_events1 field changed- added
Input schema / properties / promoterAdded value: +{ + "type": "string" +}
22 tool updates
- Changed
create_event_calendar_file3 fields changed- removed
Input schema / properties / event_id / descriptionRemoved value: -"Event id returned by search, recommendations, plan_night, get_event, or a ticket quote." - removed
Input schema / properties / status / descriptionRemoved value: -"Calendar status, for example CONFIRMED or TENTATIVE." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "calendar_event": { - "properties": { - "city": { - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_url": { - "type": [ - "string", - "null" - ] - }, - "ics_content": { - "type": "string" - }, - "ics_filename": { - "type": "string" - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "status": { - "type": "string" - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": [ - "string", - "null" - ] - }, - "uid": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "uid", - "ics_filename", - "ics_content" - ], - "type": [ - "object", - "null" - ] - } - }, - "required": [ - "calendar_event" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
create_event_preference_profile6 fields changed- added
Input schema / $defsAdded value: +{ + "dayPreference": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "additionalProperties": { + "$ref": "#/$defs/dayPreference" + }, + "propertyNames": { + "enum": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } +} - removed
Input schema / properties / consent / descriptionRemoved value: -"Must be true only after the user agreed to save preferences." - added
Input schema / properties / preferences / $refAdded value: +"#/$defs/preferences" - removed
Input schema / properties / preferences / propertiesRemoved value: -{ - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } -} - removed
Input schema / properties / preferences / typeRemoved value: -"object" - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "access_instructions": { - "properties": { - "deletion_instruction": { - "type": "string" - }, - "keep_private": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "profile_secret": { - "type": [ - "string", - "null" - ] - }, - "profile_secret_returned_now": { - "type": "boolean" - }, - "purpose": { - "type": "string" - }, - "reuse_instruction": { - "type": "string" - } - }, - "required": [ - "profile_id", - "profile_secret", - "profile_secret_returned_now", - "keep_private", - "purpose", - "reuse_instruction", - "deletion_instruction" - ], - "type": "object" - }, - "assistant_instruction": { - "type": "string" - }, - "created": { - "type": "boolean" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "profile_secret": { - "description": "Returned once when a profile is created. The service stores only a hash.", - "type": "string" - } - }, - "required": [ - "created" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
delete_event_preferences4 fields changed- removed
Input schema / properties / confirm_delete / descriptionRemoved value: -"Must be true only after the user confirms deletion of Dizko connector preferences and feedback history." - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "deleted": { - "type": "boolean" - } - }, - "required": [ - "deleted" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_artist_events9 fields changed- removed
Input schema / properties / artists / descriptionRemoved value: -"Artist, DJ, performer, or comedian names to look up (max 8 per call)." - removed
Input schema / properties / city / descriptionRemoved value: -"Optional city to scope the search; omit to search all cities." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Optional inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / limit_per_artist / defaultRemoved value: -5 - removed
Input schema / properties / limit_per_artist / descriptionRemoved value: -"Upcoming events per artist (max 10)." - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Optional Dizko preference profile id. When artists is omitted, the profile's saved featuring list is used." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "artists": { - "items": { - "properties": { - "artist": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "artist", - "count", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "assistant_instruction": { - "type": "string" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "date_from": { - "type": "string" - }, - "date_to": { - "type": [ - "string", - "null" - ] - }, - "dropped_artists": { - "items": { - "type": "string" - }, - "type": "array" - }, - "not_found": { - "items": { - "type": "string" - }, - "type": "array" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - } - }, - "required": [ - "artists", - "not_found" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_city_pulse6 fields changed- removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today." - removed
Input schema / properties / days / defaultRemoved value: -7 - removed
Input schema / properties / days / descriptionRemoved value: -"Window length in days starting from date_from (max 14)." - removed
Input schema / properties / event_types / descriptionRemoved value: -"Optional event-type filter, for example party." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "busiest_nights": { - "items": { - "properties": { - "date": { - "type": "string" - }, - "events": { - "type": "number" - }, - "weekday": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "date", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "date_from": { - "type": "string" - }, - "date_to": { - "type": "string" - }, - "days": { - "type": "number" - }, - "free_events_in_sample": { - "type": "number" - }, - "headliners": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "sample_note": { - "type": "string" - }, - "sample_size": { - "type": "number" - }, - "top_genres": { - "items": { - "properties": { - "events": { - "type": "number" - }, - "genre": { - "type": "string" - } - }, - "required": [ - "genre", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "top_venues": { - "items": { - "properties": { - "events": { - "type": "number" - }, - "total_attendance": { - "type": "number" - }, - "venue": { - "type": "string" - } - }, - "required": [ - "venue", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "total_available": { - "type": "number" - } - }, - "required": [ - "date_from", - "date_to", - "total_available", - "sample_size", - "busiest_nights", - "top_venues", - "top_genres", - "headliners" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_daily_roundup13 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in the ranking." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date / descriptionRemoved value: -"Target day in YYYY-MM-DD format. Defaults to today." - removed
Input schema / properties / limit / defaultRemoved value: -100 - removed
Input schema / properties / limit / descriptionRemoved value: -"How many of the day's events to fetch and rank." - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Optional Dizko preference profile id. Supply it with profile_secret to personalize the picks with saved, learned, and per-day preferences." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - removed
Input schema / properties / section_limit / defaultRemoved value: -5 - removed
Input schema / properties / section_limit / descriptionRemoved value: -"Events per category section (max 10)." - removed
Input schema / properties / top_limit / defaultRemoved value: -5 - removed
Input schema / properties / top_limit / descriptionRemoved value: -"Top picks to feature (max 10)." - removed
Input schema / properties / when / descriptionRemoved value: -"Alternative date preset: today, tonight, or tomorrow." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "date": { - "type": "string" - }, - "personalization": { - "properties": { - "applied_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "current_request": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "saved_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "source": { - "type": "string" - } - }, - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "sections": { - "items": { - "properties": { - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "key": { - "type": "string" - }, - "title": { - "type": "string" - } - }, - "required": [ - "key", - "title", - "count", - "events" - ], - "type": "object" - }, - "type": "array" - }, - "top_picks": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "total_available": { - "type": "number" - }, - "weekday": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "date", - "total_available", - "top_picks", - "sections" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event2 fields changed- removed
Input schema / properties / id / descriptionRemoved value: -"Event id." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event_feedback_prompt2 fields changed- removed
Input schema / properties / attended_at / descriptionRemoved value: -"Optional ISO date/time or YYYY-MM-DD the user attended or planned to attend." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "attended_at": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "event", - "attended_at", - "questions", - "assistant_instruction" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event_preferences3 fields changed- removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "access_instructions": { - "properties": { - "deletion_instruction": { - "type": "string" - }, - "keep_private": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "profile_secret": { - "type": [ - "string", - "null" - ] - }, - "profile_secret_returned_now": { - "type": "boolean" - }, - "purpose": { - "type": "string" - }, - "reuse_instruction": { - "type": "string" - } - }, - "required": [ - "profile_id", - "profile_secret", - "profile_secret_returned_now", - "keep_private", - "purpose", - "reuse_instruction", - "deletion_instruction" - ], - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - } - }, - "required": [ - "profile" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_event_search_followups14 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_toRemoved value: -{ - "description": "Inclusive end date in YYYY-MM-DD format.", - "type": "string" -} - removed
Input schema / properties / featuringRemoved value: -{ - "description": "Artist or performer name.", - "type": "string" -} - removed
Input schema / properties / limitRemoved value: -{ - "default": 12, - "description": "Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more.", - "type": "number" -} - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offsetRemoved value: -{ - "default": 0, - "type": "number" -} - removed
Input schema / properties / price_minRemoved value: -{ - "type": "number" -} - removed
Input schema / properties / prideRemoved value: -{ - "type": "boolean" -} - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limitRemoved value: -{ - "default": 10, - "type": "number" -} - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "missing_fields": { - "items": { - "type": "string" - }, - "type": "array" - }, - "needs_followup": { - "type": "boolean" - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - }, - "search_args_hint": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - } - }, - "required": [ - "needs_followup", - "missing_fields", - "questions", - "search_args_hint", - "assistant_instruction" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_preference_onboarding2 fields changed- removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id if already known." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "consent_required": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "consent_required", - "questions", - "assistant_instruction" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_ticket_offers2 fields changed- removed
Input schema / properties / event_id / descriptionRemoved value: -"Event id returned by search, recommendations, plan_night, or get_event." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "offers": { - "items": { - "properties": { - "autonomous_purchase_supported": { - "type": "boolean" - }, - "availability_status": { - "type": "string" - }, - "currency": { - "type": [ - "string", - "null" - ] - }, - "estimated_price": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "fees_included": { - "type": "boolean" - }, - "notes": { - "items": { - "type": "string" - }, - "type": "array" - }, - "offer_id": { - "type": "string" - }, - "price_guaranteed": { - "type": "boolean" - }, - "provider": { - "type": [ - "string", - "null" - ] - }, - "purchase_mode": { - "type": "string" - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "offer_id", - "event", - "purchase_mode", - "autonomous_purchase_supported", - "availability_status" - ], - "type": "object" - }, - "type": "array" - }, - "policy": { - "properties": { - "autonomous_purchase_available": { - "type": "boolean" - }, - "current_default_behavior": { - "type": "string" - }, - "hard_rules": { - "items": { - "type": "string" - }, - "type": "array" - }, - "provider_contract": { - "type": "string" - }, - "supported_modes": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "required": [ - "event", - "count", - "offers", - "policy" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
get_ticket_purchase_policy1 field changed- changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "autonomous_purchase_available": { - "type": "boolean" - }, - "current_default_behavior": { - "type": "string" - }, - "hard_rules": { - "items": { - "type": "string" - }, - "type": "array" - }, - "provider_contract": { - "type": "string" - }, - "supported_modes": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "autonomous_purchase_available", - "supported_modes", - "hard_rules", - "current_default_behavior" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Added
list_cities - Changed
plan_night15 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / featuring / descriptionRemoved value: -"Artist or performer name." - removed
Input schema / properties / limit / defaultRemoved value: -12 - removed
Input schema / properties / limit / descriptionRemoved value: -"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offset / defaultRemoved value: -0 - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Optional Dizko preference profile id. Supply it with profile_secret to apply saved and learned taste." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "distance_from_primary_km": { - "type": [ - "number", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "plan_note": { - "type": "string" - }, - "plan_role": { - "enum": [ - "primary", - "nearby_fallback", - "later_fallback", - "alternate" - ], - "type": "string" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "personalization": { - "properties": { - "applied_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "current_request": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "saved_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "source": { - "type": "string" - } - }, - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "strategy": { - "type": "string" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "city", - "when", - "strategy", - "events" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
purchase_ticket_order5 fields changed- removed
Input schema / properties / confirmation_text / descriptionRemoved value: -"User's explicit written confirmation, including buy/purchase, quantity, and max_total when present." - removed
Input schema / properties / idempotency_key / descriptionRemoved value: -"Optional idempotency key for integrated purchase providers." - removed
Input schema / properties / quote_token / descriptionRemoved value: -"Opaque quote token returned by quote_ticket_order." - removed
Input schema / properties / user_payment_profile_id / descriptionRemoved value: -"Provider-specific saved payment profile id, when an integrated provider supports autonomous purchase." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "calendar_event": { - "properties": { - "city": { - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_url": { - "type": [ - "string", - "null" - ] - }, - "ics_content": { - "type": "string" - }, - "ics_filename": { - "type": "string" - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "status": { - "type": "string" - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": [ - "string", - "null" - ] - }, - "uid": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "uid", - "ics_filename", - "ics_content" - ], - "type": [ - "object", - "null" - ] - }, - "checkout_url": { - "type": [ - "string", - "null" - ] - }, - "confirmation_prompt": { - "type": "string" - }, - "delivery_email": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "order_id": { - "type": [ - "string", - "null" - ] - }, - "provider_response": { - "additionalProperties": true, - "type": [ - "object", - "null" - ] - }, - "purchased": { - "type": "boolean" - }, - "quote": { - "properties": { - "autonomous_purchase_supported": { - "type": "boolean" - }, - "availability_status": { - "type": "string" - }, - "checkout_url": { - "type": [ - "string", - "null" - ] - }, - "currency": { - "type": [ - "string", - "null" - ] - }, - "estimated_price": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "expires_at": { - "type": "string" - }, - "fees_included": { - "type": "boolean" - }, - "max_total": { - "type": [ - "number", - "null" - ] - }, - "offer_id": { - "type": "string" - }, - "price_guaranteed": { - "type": "boolean" - }, - "provider": { - "type": [ - "string", - "null" - ] - }, - "purchase_mode": { - "type": "string" - }, - "quantity": { - "type": "number" - }, - "quote_id": { - "type": "string" - }, - "refund_terms": { - "type": "string" - }, - "stop_conditions": { - "items": { - "type": "string" - }, - "type": "array" - }, - "ticket_type": { - "type": "string" - } - }, - "type": [ - "object", - "null" - ] - }, - "receipt_url": { - "type": [ - "string", - "null" - ] - }, - "status": { - "type": "string" - }, - "ticket_delivery_status": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "purchased", - "status" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
quote_ticket_order8 fields changed- removed
Input schema / properties / currency / descriptionRemoved value: -"Preferred currency for max_total, for example USD." - removed
Input schema / properties / event_id / descriptionRemoved value: -"Event id returned by search, recommendations, plan_night, or get_event." - removed
Input schema / properties / max_total / descriptionRemoved value: -"Maximum all-in total the user authorizes before the agent must stop and ask again." - removed
Input schema / properties / offer_id / descriptionRemoved value: -"Optional offer_id returned by get_ticket_offers." - removed
Input schema / properties / quantity / defaultRemoved value: -1 - removed
Input schema / properties / refund_terms / descriptionRemoved value: -"Minimum refund/transfer terms the user accepts." - removed
Input schema / properties / ticket_type / descriptionRemoved value: -"Requested ticket type, for example GA, balcony, seated, VIP, or best available." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "confirmation_prompt": { - "type": "string" - }, - "confirmation_required": { - "type": "boolean" - }, - "error": { - "type": "string" - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "policy": { - "properties": { - "autonomous_purchase_available": { - "type": "boolean" - }, - "current_default_behavior": { - "type": "string" - }, - "hard_rules": { - "items": { - "type": "string" - }, - "type": "array" - }, - "provider_contract": { - "type": "string" - }, - "supported_modes": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "quote": { - "properties": { - "autonomous_purchase_supported": { - "type": "boolean" - }, - "availability_status": { - "type": "string" - }, - "checkout_url": { - "type": [ - "string", - "null" - ] - }, - "currency": { - "type": [ - "string", - "null" - ] - }, - "estimated_price": { - "type": [ - "string", - "null" - ] - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "expires_at": { - "type": "string" - }, - "fees_included": { - "type": "boolean" - }, - "max_total": { - "type": [ - "number", - "null" - ] - }, - "offer_id": { - "type": "string" - }, - "price_guaranteed": { - "type": "boolean" - }, - "provider": { - "type": [ - "string", - "null" - ] - }, - "purchase_mode": { - "type": "string" - }, - "quantity": { - "type": "number" - }, - "quote_id": { - "type": "string" - }, - "refund_terms": { - "type": "string" - }, - "stop_conditions": { - "items": { - "type": "string" - }, - "type": "array" - }, - "ticket_type": { - "type": "string" - } - }, - "type": [ - "object", - "null" - ] - }, - "quote_token": { - "type": "string" - }, - "quoted": { - "type": "boolean" - } - }, - "required": [ - "quoted" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
recommend_events13 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / featuring / descriptionRemoved value: -"Artist or performer name." - removed
Input schema / properties / limit / defaultRemoved value: -12 - removed
Input schema / properties / limit / descriptionRemoved value: -"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offset / defaultRemoved value: -0 - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "count", - "events" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
recommend_events_for_user4 fields changed- removed
Input schema / properties / limit / defaultRemoved value: -50 - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "recommendation_reasons": { - "items": { - "type": "string" - }, - "type": "array" - }, - "recommendation_score": { - "type": "number" - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - }, - "message": { - "type": "string" - }, - "onboarding_needed": { - "type": "boolean" - }, - "personalization": { - "properties": { - "applied_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "current_request": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": [ - "boolean", - "null" - ] - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price_max": { - "type": [ - "number", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - }, - "when": { - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "saved_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "source": { - "type": "string" - } - }, - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "questions": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
record_event_feedback3 fields changed- removed
Input schema / properties / attended_at / descriptionRemoved value: -"ISO date/time or YYYY-MM-DD." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "feedback": { - "properties": { - "attended_at": { - "type": [ - "string", - "null" - ] - }, - "created_at": { - "type": "string" - }, - "event": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "event_id": { - "type": "string" - }, - "liked": { - "type": [ - "boolean", - "null" - ] - }, - "notes": { - "type": [ - "string", - "null" - ] - }, - "rating": { - "type": [ - "number", - "null" - ] - } - }, - "type": "object" - }, - "follow_up": { - "type": "string" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "saved": { - "type": "boolean" - } - }, - "required": [ - "saved", - "feedback", - "profile" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
save_event_preferences9 fields changed- added
Input schema / $defsAdded value: +{ + "dayPreference": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "preferences": { + "properties": { + "avoid": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cities": { + "items": { + "type": "string" + }, + "type": "array" + }, + "day_filters": { + "additionalProperties": { + "$ref": "#/$defs/dayPreference" + }, + "propertyNames": { + "enum": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "type": "object" + }, + "event_types": { + "items": { + "type": "string" + }, + "type": "array" + }, + "featuring": { + "items": { + "type": "string" + }, + "type": "array" + }, + "free": { + "type": "boolean" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array" + }, + "max_price": { + "type": "number" + }, + "neighborhoods": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nightlife": { + "type": "boolean" + }, + "venues": { + "items": { + "type": "string" + }, + "type": "array" + }, + "vibe": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } +} - removed
Input schema / properties / consent / descriptionRemoved value: -"Must be true only after the user agreed to save preferences." - removed
Input schema / properties / mode / defaultRemoved value: -"merge" - added
Input schema / properties / preferences / $refAdded value: +"#/$defs/preferences" - removed
Input schema / properties / preferences / propertiesRemoved value: -{ - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } -} - removed
Input schema / properties / preferences / typeRemoved value: -"object" - removed
Input schema / properties / profile_id / descriptionRemoved value: -"Stable user/profile id." - removed
Input schema / properties / profile_secret / descriptionRemoved value: -"Private profile secret returned when the profile was created." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "access_instructions": { - "properties": { - "deletion_instruction": { - "type": "string" - }, - "keep_private": { - "type": "boolean" - }, - "profile_id": { - "type": [ - "string", - "null" - ] - }, - "profile_secret": { - "type": [ - "string", - "null" - ] - }, - "profile_secret_returned_now": { - "type": "boolean" - }, - "purpose": { - "type": "string" - }, - "reuse_instruction": { - "type": "string" - } - }, - "required": [ - "profile_id", - "profile_secret", - "profile_secret_returned_now", - "keep_private", - "purpose", - "reuse_instruction", - "deletion_instruction" - ], - "type": "object" - }, - "profile": { - "properties": { - "consent": { - "type": "boolean" - }, - "feedback_count": { - "type": "number" - }, - "learned_preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "preferences": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "cities": { - "items": { - "type": "string" - }, - "type": "array" - }, - "day_filters": { - "description": "Optional per-weekday filters applied only when searching that day, for example techno Fridays but chill Sundays. Array fields add to the user's general taste; max_price/free/nightlife override it for that day.", - "properties": { - "friday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "monday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "saturday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "sunday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "thursday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "tuesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "wednesday": { - "properties": { - "avoid": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "featuring": { - "items": { - "type": "string" - }, - "type": "array" - }, - "free": { - "type": "boolean" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "max_price": { - "type": "number" - }, - "neighborhoods": { - "items": { - "type": "string" - }, - "type": "array" - }, - "nightlife": { - "type": "boolean" - }, - "venues": { - "items": { - "type": "string" - }, - "type": "array" - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "profile_id": { - "type": "string" - }, - "updated_at": { - "type": "string" - } - }, - "required": [ - "profile_id", - "consent", - "preferences", - "feedback_count", - "updated_at" - ], - "type": "object" - }, - "saved": { - "type": "boolean" - } - }, - "required": [ - "saved" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
- Changed
search_events13 fields changed- removed
Input schema / properties / avoid / descriptionRemoved value: -"Terms to penalize in recommendations." - removed
Input schema / properties / city / descriptionRemoved value: -"City name, for example berlin or new york." - removed
Input schema / properties / date_from / descriptionRemoved value: -"Inclusive start date in YYYY-MM-DD format." - removed
Input schema / properties / date_to / descriptionRemoved value: -"Inclusive end date in YYYY-MM-DD format." - removed
Input schema / properties / featuring / descriptionRemoved value: -"Artist or performer name." - removed
Input schema / properties / limit / defaultRemoved value: -12 - removed
Input schema / properties / limit / descriptionRemoved value: -"Results per page (default 12). The response's count field is the TOTAL matching events. Raise limit or use offset to page through more." - removed
Input schema / properties / max_price / descriptionRemoved value: -"Preference hint used by recommend_events and plan_night." - removed
Input schema / properties / offset / defaultRemoved value: -0 - removed
Input schema / properties / query / descriptionRemoved value: -"Free-text search, hybrid-ranked by the live API: exact prefix > substring > fuzzy > semantic similarity over event embeddings. Handles soft natural-language intent ('dark queer warehouse rave', 'ambient listening bar') as well as literal names, and recognizes date phrases." - removed
Input schema / properties / result_limit / defaultRemoved value: -10 - removed
Input schema / properties / when / descriptionRemoved value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD." - changed
Output schema / (root)Previous value: -{ - "anyOf": [ - { - "properties": { - "app_download_url": { - "description": "Dizko iPhone app landing page.", - "type": "string" - }, - "assistant_instruction": { - "type": "string" - }, - "count": { - "type": "number" - }, - "events": { - "items": { - "properties": { - "attendance_count": { - "type": [ - "number", - "null" - ] - }, - "calendar_url": { - "description": "Prefilled Google Calendar link. Offer as 'Add to calendar'.", - "type": [ - "string", - "null" - ] - }, - "city": { - "type": [ - "string", - "null" - ] - }, - "description": { - "description": "Short one-line event description for display.", - "type": [ - "string", - "null" - ] - }, - "directions_url": { - "description": "Google Maps directions link. Offer as 'Get directions'.", - "type": [ - "string", - "null" - ] - }, - "ends_at": { - "type": [ - "string", - "null" - ] - }, - "event_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "event_url": { - "type": "string" - }, - "genres": { - "items": { - "type": "string" - }, - "type": "array" - }, - "id": { - "type": "string" - }, - "lineup": { - "items": { - "type": "string" - }, - "type": "array" - }, - "price": { - "type": [ - "string", - "null" - ] - }, - "source": { - "type": [ - "string", - "null" - ] - }, - "starts_at": { - "type": [ - "string", - "null" - ] - }, - "ticket_url": { - "type": [ - "string", - "null" - ] - }, - "title": { - "type": "string" - }, - "venue": { - "type": [ - "string", - "null" - ] - }, - "vibe": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "id", - "title", - "event_url" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "count", - "events" - ], - "type": "object" - }, - { - "properties": { - "assistant_instruction": { - "type": "string" - }, - "cause": { - "type": [ - "string", - "null" - ] - }, - "classification": { - "type": [ - "string", - "null" - ] - }, - "code": { - "type": [ - "string", - "null" - ] - }, - "error": { - "type": "string" - }, - "hostname": { - "type": [ - "string", - "null" - ] - }, - "retryable": { - "type": "boolean" - }, - "status": { - "type": [ - "number", - "null" - ] - }, - "type": { - "type": "string" - }, - "url": { - "type": [ - "string", - "null" - ] - } - }, - "required": [ - "error" - ], - "type": "object" - } - ], - "type": "object" -}New value: +null
21 tool updates
- First observed
create_event_calendar_file - First observed
create_event_preference_profile - First observed
delete_event_preferences - First observed
get_artist_events - First observed
get_city_pulse - First observed
get_daily_roundup - First observed
get_event - First observed
get_event_feedback_prompt - First observed
get_event_preferences - First observed
get_event_search_followups - First observed
get_preference_onboarding - First observed
get_ticket_offers - First observed
get_ticket_purchase_policy - First observed
plan_night - First observed
purchase_ticket_order - First observed
quote_ticket_order - First observed
recommend_events - First observed
recommend_events_for_user - First observed
record_event_feedback - First observed
save_event_preferences - First observed
search_events
Related MCP Connectors
Live-concert discovery: 44,000+ upcoming concerts worldwide by city, artist, genre or festival.
Search live events in 60+ countries, plan a night out, and demand artists to tour your city.
UK live music and events, from grassroots small venues to major shows, updated daily.
Discover tech events, startup meetups, AI events across 8 cities — including hidden ones.
Related MCP Servers
- AlicenseAqualityBmaintenanceProvides music events, concerts, music festivals, nightclubs and other events information.172MIT
- AlicenseNot gradedqualityDmaintenanceDiscover tech events, startup meetups, AI events across cities including hidden ones.31 npm2MIT
- -
- AlicenseNot gradedqualityBmaintenanceEnables discovery of electronic/dance events, concerts, and festivals across North American metros, with location lookup by city, state, or coordinates.1 npmMIT
Glama MCP Gateway
Add one secure layer between your agents and this server.