Skip to main content
Glama

Server Details

Live event discovery: concerts, club nights, art, comedy, and festivals across 14 cities.

If you are the author of this connector, you can claim ownership by verifying the domain or GitHub account it belongs to. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
100.0% over 41 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

B3.2/5.0

Scored across 30 tools

Disambiguation3/5

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.

Naming Consistency4/5

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.

Tool Count2/5

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.

Completeness4/5

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 tools
add_to_dizko_planAdd to Dizko PlanB
Idempotent
Inspect

Use this when a user confirms they want to add one Dizko event to the connected user's persistent plan only after explicit confirmation.

ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYes
confirmedYes
idempotency_keyYes

TDQS

B3.1/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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 EventA
DestructiveIdempotent
Inspect

Use this only when the user confirms an event is not for them. It hides the event and teaches their Dizko taste model.

ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYes
confirmedYes
idempotency_keyYes

TDQS

A3.7/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 FileB
Read-onlyIdempotent
Inspect

Use this when a user wants to add a Dizko event to their calendar after choosing or buying tickets.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNo
event_idYes

TDQS

B3.1/5.0
Behavior1/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
consentYes
preferencesNo

TDQS

B3/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 PreferencesA
DestructiveIdempotent
Inspect

Use this only when a user asks to delete their Dizko saved event preferences and feedback history.

ParametersJSON Schema
NameRequiredDescriptionDefault
profile_idYes
confirm_deleteYes
profile_secretYes

TDQS

A4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 EntitiesB
Read-onlyIdempotent
Inspect

Use this when a user asks who a DJ is or about a venue, collective, or promoter.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNo
cityNo
kindYes
genreNo
limitNo
queryNo
date_toNo
date_fromNo

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 ArtistA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNo
cityNo
limitNo
queryNo
date_toNo
date_fromNo

TDQS

A3.6/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 EventsB
Read-onlyIdempotent
Inspect

Use this when a user wants upcoming events for named artists or artists saved in a Dizko profile.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
artistsNo
date_toNo
date_fromNo
profile_idNo
profile_secretNo
limit_per_artistNo

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 PageA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
handleYes

TDQS

A3.7/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 PulseA
Read-onlyIdempotent
Inspect

Use this when a user wants a city's busiest nights, top venues, genre mix, and headline events.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYes
daysNo
date_fromNo
event_typesNo

TDQS

A3.9/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 RoundupB
Read-onlyIdempotent
Inspect

Use this when a user wants a daily city event digest.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYes
dateNo
freeNo
vibeNo
whenNo
avoidNo
limitNo
genresNo
price_maxNo
top_limitNo
profile_idNo
event_typesNo
neighborhoodsNo
section_limitNo
profile_secretNo

TDQS

B3.1/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 EventA
Read-onlyIdempotent
Inspect

Use this when a user asks for details about a Dizko event id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 PromptB
Read-onlyIdempotent
Inspect

Use this when a user needs a short post-event feedback prompt.

ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYes
attended_atNo

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 PreferencesB
Read-onlyIdempotent
Inspect

Use this when a user wants to view saved and learned event preferences.

ParametersJSON Schema
NameRequiredDescriptionDefault
profile_idYes
profile_secretYes

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 FollowupsB
Read-onlyIdempotent
Inspect

Use this when an event search needs follow-up questions.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
freeNo
vibeNo
whenNo
avoidNo
queryNo
venueNo
genresNo
date_fromNo
max_priceNo
price_maxNo
event_typesNo
neighborhoodsNo

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 OnboardingB
Read-onlyIdempotent
Inspect

Use this when a user wants consent-first questions before saving event preferences.

ParametersJSON Schema
NameRequiredDescriptionDefault
profile_idNo

TDQS

B3.1/5.0
Behavior3/5

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.

Conciseness3/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 ProfileA
Read-onlyIdempotent
Inspect

Use this when personalizing for a connected user: read their learned Dizko taste plus saved and binned events.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 OffersA
Read-onlyIdempotent
Inspect

Use this when a user wants ticket options for a specific Dizko event before quoting or buying.

ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYes

TDQS

A4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 PolicyA
Read-onlyIdempotent
Inspect

Use this when a user asks how Dizko agents can buy tickets.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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 VenueA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNo
cityNo
limitNo
queryNo
date_toNo
date_fromNo

TDQS

A3.7/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 CitiesA
Read-onlyIdempotent
Inspect

Use this when a user asks about Dizko city coverage or freshness.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 NightC
Read-onlyIdempotent
Inspect

Use this when a user wants a primary night-out plan with fallback events.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
freeNo
vibeNo
whenNo
avoidNo
limitNo
prideNo
queryNo
venueNo
cursorNo
genresNo
offsetNo
date_toNo
promoterNo
date_fromNo
featuringNo
max_priceNo
price_maxNo
price_minNo
profile_idNo
event_typesNo
result_limitNo
neighborhoodsNo
profile_secretNo

TDQS

C2.9/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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 OrderB
Destructive
Inspect

Use this when a user confirms a locked quote for purchase or checkout handoff.

ParametersJSON Schema
NameRequiredDescriptionDefault
quote_tokenYes
idempotency_keyNo
confirmation_textYes
user_payment_profile_idNo

TDQS

B3.3/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 OrderA
Read-only
Inspect

Use this when a user wants a locked ticket quote before purchase.

ParametersJSON Schema
NameRequiredDescriptionDefault
currencyNo
event_idYes
offer_idNo
quantityNo
max_totalNo
ticket_typeNo
refund_termsNo

TDQS

A3.7/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 EventsB
Read-onlyIdempotent
Inspect

Use this when a user wants live events ranked by taste, vibe, price, and exclusions.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
freeNo
vibeNo
whenNo
avoidNo
limitNo
prideNo
queryNo
venueNo
cursorNo
genresNo
offsetNo
date_toNo
promoterNo
date_fromNo
featuringNo
max_priceNo
price_maxNo
price_minNo
event_typesNo
result_limitNo
neighborhoodsNo

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 UserB
Read-onlyIdempotent
Inspect

Use this when a user wants recommendations personalized with a saved Dizko profile.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
freeNo
vibeNo
whenNo
avoidNo
limitNo
queryNo
venueNo
genresNo
date_toNo
date_fromNo
featuringNo
max_priceNo
nightlifeNo
price_maxNo
profile_idYes
event_typesNo
result_limitNo
neighborhoodsNo
profile_secretYes

TDQS

B3.2/5.0
Behavior3/5

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.

Conciseness3/5

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.

Completeness1/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
likedNo
notesNo
ratingNo
event_idYes
profile_idYes
attended_atNo
profile_secretYes

TDQS

B3/5.0
Behavior2/5

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.

Conciseness3/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 EventB
Idempotent
Inspect

Use this when a user confirms they want to save one Dizko event to the connected user's account only after explicit confirmation.

ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYes
confirmedYes
idempotency_keyYes

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNo
consentYes
profile_idYes
preferencesYes
profile_secretYes

TDQS

B3/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness1/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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 EventsC
Read-onlyIdempotent
Inspect

Use this when a user wants filtered live events.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
freeNo
vibeNo
whenNo
avoidNo
limitNo
prideNo
queryNo
venueNo
cursorNo
genresNo
offsetNo
date_toNo
promoterNo
date_fromNo
featuringNo
max_priceNo
price_maxNo
price_minNo
event_typesNo
result_limitNo
neighborhoodsNo

TDQS

C2.8/5.0
Behavior2/5

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.

Conciseness3/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

  1. 2 tool updates
    • Addedbin_event
    • Addedget_taste_profile
  2. 2 tool updates
    • Addedadd_to_dizko_plan
    • Addedsave_event
  3. 5 tool updates
    • Addedget_artist
    • Addedget_venue
    • Changedplan_night2 fields changed
      • addedInput schema / additionalProperties
        Added value: +false
      • addedInput schema / properties / cursor
        Added value: +{
        +  "type": "string"
        +}
    • Changedrecommend_events2 fields changed
      • addedInput schema / additionalProperties
        Added value: +false
      • addedInput schema / properties / cursor
        Added value: +{
        +  "type": "string"
        +}
    • Changedsearch_events2 fields changed
      • addedInput schema / additionalProperties
        Added value: +false
      • addedInput schema / properties / cursor
        Added value: +{
        +  "type": "string"
        +}
  4. 1 tool update
    • Addedget_artist_page
  5. 23 tool updates
    • Changedcreate_event_calendar_file3 fields changed
      • removedInput schema / properties / event_id / description
        Removed value: -"Event id returned by search, recommendations, plan_night, get_event, or a ticket quote."
      • removedInput schema / properties / status / description
        Removed value: -"Calendar status, for example CONFIRMED or TENTATIVE."
      • changedOutput 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
    • Changedcreate_event_preference_profile6 fields changed
      • addedInput schema / $defs
        Added 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"
        +  }
        +}
      • removedInput schema / properties / consent / description
        Removed value: -"Must be true only after the user agreed to save preferences."
      • addedInput schema / properties / preferences / $ref
        Added value: +"#/$defs/preferences"
      • removedInput schema / properties / preferences / properties
        Removed 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"
        -  }
        -}
      • removedInput schema / properties / preferences / type
        Removed value: -"object"
      • changedOutput 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
    • Changeddelete_event_preferences4 fields changed
      • removedInput schema / properties / confirm_delete / description
        Removed value: -"Must be true only after the user confirms deletion of Dizko connector preferences and feedback history."
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Addedfind_scene_entities
    • Changedget_artist_events9 fields changed
      • removedInput schema / properties / artists / description
        Removed value: -"Artist, DJ, performer, or comedian names to look up (max 8 per call)."
      • removedInput schema / properties / city / description
        Removed value: -"Optional city to scope the search; omit to search all cities."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today."
      • removedInput schema / properties / date_to / description
        Removed value: -"Optional inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / limit_per_artist / default
        Removed value: -5
      • removedInput schema / properties / limit_per_artist / description
        Removed value: -"Upcoming events per artist (max 10)."
      • removedInput schema / properties / profile_id / description
        Removed value: -"Optional Dizko preference profile id. When artists is omitted, the profile's saved featuring list is used."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedget_city_pulse6 fields changed
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today."
      • removedInput schema / properties / days / default
        Removed value: -7
      • removedInput schema / properties / days / description
        Removed value: -"Window length in days starting from date_from (max 14)."
      • removedInput schema / properties / event_types / description
        Removed value: -"Optional event-type filter, for example party."
      • changedOutput 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
    • Changedget_daily_roundup13 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in the ranking."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date / description
        Removed value: -"Target day in YYYY-MM-DD format. Defaults to today."
      • removedInput schema / properties / limit / default
        Removed value: -100
      • removedInput schema / properties / limit / description
        Removed value: -"How many of the day's events to fetch and rank."
      • removedInput schema / properties / profile_id / description
        Removed value: -"Optional Dizko preference profile id. Supply it with profile_secret to personalize the picks with saved, learned, and per-day preferences."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • removedInput schema / properties / section_limit / default
        Removed value: -5
      • removedInput schema / properties / section_limit / description
        Removed value: -"Events per category section (max 10)."
      • removedInput schema / properties / top_limit / default
        Removed value: -5
      • removedInput schema / properties / top_limit / description
        Removed value: -"Top picks to feature (max 10)."
      • removedInput schema / properties / when / description
        Removed value: -"Alternative date preset: today, tonight, or tomorrow."
      • changedOutput 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
    • Changedget_event2 fields changed
      • removedInput schema / properties / id / description
        Removed value: -"Event id."
      • changedOutput 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
    • Changedget_event_feedback_prompt2 fields changed
      • removedInput schema / properties / attended_at / description
        Removed value: -"Optional ISO date/time or YYYY-MM-DD the user attended or planned to attend."
      • changedOutput 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
    • Changedget_event_preferences3 fields changed
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedget_event_search_followups14 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to
        Removed value: -{
        -  "description": "Inclusive end date in YYYY-MM-DD format.",
        -  "type": "string"
        -}
      • removedInput schema / properties / featuring
        Removed value: -{
        -  "description": "Artist or performer name.",
        -  "type": "string"
        -}
      • removedInput schema / properties / limit
        Removed 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"
        -}
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset
        Removed value: -{
        -  "default": 0,
        -  "type": "number"
        -}
      • removedInput schema / properties / price_min
        Removed value: -{
        -  "type": "number"
        -}
      • removedInput schema / properties / pride
        Removed value: -{
        -  "type": "boolean"
        -}
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit
        Removed value: -{
        -  "default": 10,
        -  "type": "number"
        -}
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
    • Changedget_preference_onboarding2 fields changed
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id if already known."
      • changedOutput 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
    • Changedget_ticket_offers2 fields changed
      • removedInput schema / properties / event_id / description
        Removed value: -"Event id returned by search, recommendations, plan_night, or get_event."
      • changedOutput 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
    • Changedget_ticket_purchase_policy1 field changed
      • changedOutput 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
    • Addedlist_cities
    • Changedplan_night16 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to / description
        Removed value: -"Inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / featuring / description
        Removed value: -"Artist or performer name."
      • removedInput schema / properties / limit / default
        Removed value: -12
      • removedInput schema / properties / limit / description
        Removed 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."
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset / default
        Removed value: -0
      • removedInput schema / properties / profile_id / description
        Removed value: -"Optional Dizko preference profile id. Supply it with profile_secret to apply saved and learned taste."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • addedInput schema / properties / promoter
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
    • Changedpurchase_ticket_order5 fields changed
      • removedInput schema / properties / confirmation_text / description
        Removed value: -"User's explicit written confirmation, including buy/purchase, quantity, and max_total when present."
      • removedInput schema / properties / idempotency_key / description
        Removed value: -"Optional idempotency key for integrated purchase providers."
      • removedInput schema / properties / quote_token / description
        Removed value: -"Opaque quote token returned by quote_ticket_order."
      • removedInput schema / properties / user_payment_profile_id / description
        Removed value: -"Provider-specific saved payment profile id, when an integrated provider supports autonomous purchase."
      • changedOutput 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
    • Changedquote_ticket_order8 fields changed
      • removedInput schema / properties / currency / description
        Removed value: -"Preferred currency for max_total, for example USD."
      • removedInput schema / properties / event_id / description
        Removed value: -"Event id returned by search, recommendations, plan_night, or get_event."
      • removedInput schema / properties / max_total / description
        Removed value: -"Maximum all-in total the user authorizes before the agent must stop and ask again."
      • removedInput schema / properties / offer_id / description
        Removed value: -"Optional offer_id returned by get_ticket_offers."
      • removedInput schema / properties / quantity / default
        Removed value: -1
      • removedInput schema / properties / refund_terms / description
        Removed value: -"Minimum refund/transfer terms the user accepts."
      • removedInput schema / properties / ticket_type / description
        Removed value: -"Requested ticket type, for example GA, balcony, seated, VIP, or best available."
      • changedOutput 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
    • Changedrecommend_events14 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to / description
        Removed value: -"Inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / featuring / description
        Removed value: -"Artist or performer name."
      • removedInput schema / properties / limit / default
        Removed value: -12
      • removedInput schema / properties / limit / description
        Removed 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."
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset / default
        Removed value: -0
      • addedInput schema / properties / promoter
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
    • Changedrecommend_events_for_user4 fields changed
      • removedInput schema / properties / limit / default
        Removed value: -50
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • changedOutput 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
    • Changedrecord_event_feedback3 fields changed
      • removedInput schema / properties / attended_at / description
        Removed value: -"ISO date/time or YYYY-MM-DD."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedsave_event_preferences9 fields changed
      • addedInput schema / $defs
        Added 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"
        +  }
        +}
      • removedInput schema / properties / consent / description
        Removed value: -"Must be true only after the user agreed to save preferences."
      • removedInput schema / properties / mode / default
        Removed value: -"merge"
      • addedInput schema / properties / preferences / $ref
        Added value: +"#/$defs/preferences"
      • removedInput schema / properties / preferences / properties
        Removed 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"
        -  }
        -}
      • removedInput schema / properties / preferences / type
        Removed value: -"object"
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedsearch_events14 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to / description
        Removed value: -"Inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / featuring / description
        Removed value: -"Artist or performer name."
      • removedInput schema / properties / limit / default
        Removed value: -12
      • removedInput schema / properties / limit / description
        Removed 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."
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset / default
        Removed value: -0
      • addedInput schema / properties / promoter
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
  6. 23 tool updates
    • Changedcreate_event_calendar_file3 fields changed
      • addedInput schema / properties / event_id / description
        Added value: +"Event id returned by search, recommendations, plan_night, get_event, or a ticket quote."
      • addedInput schema / properties / status / description
        Added value: +"Calendar status, for example CONFIRMED or TENTATIVE."
      • changedOutput 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"
        +}
    • Changedcreate_event_preference_profile6 fields changed
      • removedInput schema / $defs
        Removed 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"
        -  }
        -}
      • addedInput schema / properties / consent / description
        Added value: +"Must be true only after the user agreed to save preferences."
      • removedInput schema / properties / preferences / $ref
        Removed value: -"#/$defs/preferences"
      • addedInput schema / properties / preferences / properties
        Added 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"
        +  }
        +}
      • addedInput schema / properties / preferences / type
        Added value: +"object"
      • changedOutput 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"
        +}
    • Changeddelete_event_preferences4 fields changed
      • addedInput schema / properties / confirm_delete / description
        Added value: +"Must be true only after the user confirms deletion of Dizko connector preferences and feedback history."
      • addedInput schema / properties / profile_id / description
        Added value: +"Stable user/profile id."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • changedOutput 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"
        +}
    • Removedfind_scene_entities
    • Changedget_artist_events9 fields changed
      • addedInput schema / properties / artists / description
        Added value: +"Artist, DJ, performer, or comedian names to look up (max 8 per call)."
      • addedInput schema / properties / city / description
        Added value: +"Optional city to scope the search; omit to search all cities."
      • addedInput schema / properties / date_from / description
        Added value: +"Inclusive start date in YYYY-MM-DD format. Defaults to today."
      • addedInput schema / properties / date_to / description
        Added value: +"Optional inclusive end date in YYYY-MM-DD format."
      • addedInput schema / properties / limit_per_artist / default
        Added value: +5
      • addedInput schema / properties / limit_per_artist / description
        Added value: +"Upcoming events per artist (max 10)."
      • addedInput schema / properties / profile_id / description
        Added value: +"Optional Dizko preference profile id. When artists is omitted, the profile's saved featuring list is used."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • changedOutput 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"
        +}
    • Changedget_city_pulse6 fields changed
      • addedInput schema / properties / city / description
        Added value: +"City name, for example berlin or new york."
      • addedInput schema / properties / date_from / description
        Added value: +"Inclusive start date in YYYY-MM-DD format. Defaults to today."
      • addedInput schema / properties / days / default
        Added value: +7
      • addedInput schema / properties / days / description
        Added value: +"Window length in days starting from date_from (max 14)."
      • addedInput schema / properties / event_types / description
        Added value: +"Optional event-type filter, for example party."
      • changedOutput 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"
        +}
    • Changedget_daily_roundup13 fields changed
      • addedInput schema / properties / avoid / description
        Added value: +"Terms to penalize in the ranking."
      • addedInput schema / properties / city / description
        Added value: +"City name, for example berlin or new york."
      • addedInput schema / properties / date / description
        Added value: +"Target day in YYYY-MM-DD format. Defaults to today."
      • addedInput schema / properties / limit / default
        Added value: +100
      • addedInput schema / properties / limit / description
        Added value: +"How many of the day's events to fetch and rank."
      • addedInput schema / properties / profile_id / description
        Added value: +"Optional Dizko preference profile id. Supply it with profile_secret to personalize the picks with saved, learned, and per-day preferences."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • addedInput schema / properties / section_limit / default
        Added value: +5
      • addedInput schema / properties / section_limit / description
        Added value: +"Events per category section (max 10)."
      • addedInput schema / properties / top_limit / default
        Added value: +5
      • addedInput schema / properties / top_limit / description
        Added value: +"Top picks to feature (max 10)."
      • addedInput schema / properties / when / description
        Added value: +"Alternative date preset: today, tonight, or tomorrow."
      • changedOutput 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"
        +}
    • Changedget_event2 fields changed
      • addedInput schema / properties / id / description
        Added value: +"Event id."
      • changedOutput 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"
        +}
    • Changedget_event_feedback_prompt2 fields changed
      • addedInput schema / properties / attended_at / description
        Added value: +"Optional ISO date/time or YYYY-MM-DD the user attended or planned to attend."
      • changedOutput 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"
        +}
    • Changedget_event_preferences3 fields changed
      • addedInput schema / properties / profile_id / description
        Added value: +"Stable user/profile id."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • changedOutput 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"
        +}
    • Changedget_event_search_followups14 fields changed
      • addedInput schema / properties / avoid / description
        Added value: +"Terms to penalize in recommendations."
      • addedInput schema / properties / city / description
        Added value: +"City name, for example berlin or new york."
      • addedInput schema / properties / date_from / description
        Added value: +"Inclusive start date in YYYY-MM-DD format."
      • addedInput schema / properties / date_to
        Added value: +{
        +  "description": "Inclusive end date in YYYY-MM-DD format.",
        +  "type": "string"
        +}
      • addedInput schema / properties / featuring
        Added value: +{
        +  "description": "Artist or performer name.",
        +  "type": "string"
        +}
      • addedInput schema / properties / limit
        Added 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"
        +}
      • addedInput schema / properties / max_price / description
        Added value: +"Preference hint used by recommend_events and plan_night."
      • addedInput schema / properties / offset
        Added value: +{
        +  "default": 0,
        +  "type": "number"
        +}
      • addedInput schema / properties / price_min
        Added value: +{
        +  "type": "number"
        +}
      • addedInput schema / properties / pride
        Added value: +{
        +  "type": "boolean"
        +}
      • addedInput schema / properties / query / description
        Added 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."
      • addedInput schema / properties / result_limit
        Added value: +{
        +  "default": 10,
        +  "type": "number"
        +}
      • addedInput schema / properties / when / description
        Added value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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"
        +}
    • Changedget_preference_onboarding2 fields changed
      • addedInput schema / properties / profile_id / description
        Added value: +"Stable user/profile id if already known."
      • changedOutput 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"
        +}
    • Changedget_ticket_offers2 fields changed
      • addedInput schema / properties / event_id / description
        Added value: +"Event id returned by search, recommendations, plan_night, or get_event."
      • changedOutput 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"
        +}
    • Changedget_ticket_purchase_policy1 field changed
      • changedOutput 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"
        +}
    • Removedlist_cities
    • Changedplan_night16 fields changed
      • addedInput schema / properties / avoid / description
        Added value: +"Terms to penalize in recommendations."
      • addedInput schema / properties / city / description
        Added value: +"City name, for example berlin or new york."
      • addedInput schema / properties / date_from / description
        Added value: +"Inclusive start date in YYYY-MM-DD format."
      • addedInput schema / properties / date_to / description
        Added value: +"Inclusive end date in YYYY-MM-DD format."
      • addedInput schema / properties / featuring / description
        Added value: +"Artist or performer name."
      • addedInput schema / properties / limit / default
        Added value: +12
      • addedInput schema / properties / limit / description
        Added 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."
      • addedInput schema / properties / max_price / description
        Added value: +"Preference hint used by recommend_events and plan_night."
      • addedInput schema / properties / offset / default
        Added value: +0
      • addedInput schema / properties / profile_id / description
        Added value: +"Optional Dizko preference profile id. Supply it with profile_secret to apply saved and learned taste."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • removedInput schema / properties / promoter
        Removed value: -{
        -  "type": "string"
        -}
      • addedInput schema / properties / query / description
        Added 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."
      • addedInput schema / properties / result_limit / default
        Added value: +10
      • addedInput schema / properties / when / description
        Added value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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"
        +}
    • Changedpurchase_ticket_order5 fields changed
      • addedInput schema / properties / confirmation_text / description
        Added value: +"User's explicit written confirmation, including buy/purchase, quantity, and max_total when present."
      • addedInput schema / properties / idempotency_key / description
        Added value: +"Optional idempotency key for integrated purchase providers."
      • addedInput schema / properties / quote_token / description
        Added value: +"Opaque quote token returned by quote_ticket_order."
      • addedInput schema / properties / user_payment_profile_id / description
        Added value: +"Provider-specific saved payment profile id, when an integrated provider supports autonomous purchase."
      • changedOutput 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"
        +}
    • Changedquote_ticket_order8 fields changed
      • addedInput schema / properties / currency / description
        Added value: +"Preferred currency for max_total, for example USD."
      • addedInput schema / properties / event_id / description
        Added value: +"Event id returned by search, recommendations, plan_night, or get_event."
      • addedInput schema / properties / max_total / description
        Added value: +"Maximum all-in total the user authorizes before the agent must stop and ask again."
      • addedInput schema / properties / offer_id / description
        Added value: +"Optional offer_id returned by get_ticket_offers."
      • addedInput schema / properties / quantity / default
        Added value: +1
      • addedInput schema / properties / refund_terms / description
        Added value: +"Minimum refund/transfer terms the user accepts."
      • addedInput schema / properties / ticket_type / description
        Added value: +"Requested ticket type, for example GA, balcony, seated, VIP, or best available."
      • changedOutput 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"
        +}
    • Changedrecommend_events14 fields changed
      • addedInput schema / properties / avoid / description
        Added value: +"Terms to penalize in recommendations."
      • addedInput schema / properties / city / description
        Added value: +"City name, for example berlin or new york."
      • addedInput schema / properties / date_from / description
        Added value: +"Inclusive start date in YYYY-MM-DD format."
      • addedInput schema / properties / date_to / description
        Added value: +"Inclusive end date in YYYY-MM-DD format."
      • addedInput schema / properties / featuring / description
        Added value: +"Artist or performer name."
      • addedInput schema / properties / limit / default
        Added value: +12
      • addedInput schema / properties / limit / description
        Added 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."
      • addedInput schema / properties / max_price / description
        Added value: +"Preference hint used by recommend_events and plan_night."
      • addedInput schema / properties / offset / default
        Added value: +0
      • removedInput schema / properties / promoter
        Removed value: -{
        -  "type": "string"
        -}
      • addedInput schema / properties / query / description
        Added 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."
      • addedInput schema / properties / result_limit / default
        Added value: +10
      • addedInput schema / properties / when / description
        Added value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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"
        +}
    • Changedrecommend_events_for_user4 fields changed
      • addedInput schema / properties / limit / default
        Added value: +50
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • addedInput schema / properties / result_limit / default
        Added value: +10
      • changedOutput 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"
        +}
    • Changedrecord_event_feedback3 fields changed
      • addedInput schema / properties / attended_at / description
        Added value: +"ISO date/time or YYYY-MM-DD."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • changedOutput 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"
        +}
    • Changedsave_event_preferences9 fields changed
      • removedInput schema / $defs
        Removed 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"
        -  }
        -}
      • addedInput schema / properties / consent / description
        Added value: +"Must be true only after the user agreed to save preferences."
      • addedInput schema / properties / mode / default
        Added value: +"merge"
      • removedInput schema / properties / preferences / $ref
        Removed value: -"#/$defs/preferences"
      • addedInput schema / properties / preferences / properties
        Added 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"
        +  }
        +}
      • addedInput schema / properties / preferences / type
        Added value: +"object"
      • addedInput schema / properties / profile_id / description
        Added value: +"Stable user/profile id."
      • addedInput schema / properties / profile_secret / description
        Added value: +"Private profile secret returned when the profile was created."
      • changedOutput 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"
        +}
    • Changedsearch_events14 fields changed
      • addedInput schema / properties / avoid / description
        Added value: +"Terms to penalize in recommendations."
      • addedInput schema / properties / city / description
        Added value: +"City name, for example berlin or new york."
      • addedInput schema / properties / date_from / description
        Added value: +"Inclusive start date in YYYY-MM-DD format."
      • addedInput schema / properties / date_to / description
        Added value: +"Inclusive end date in YYYY-MM-DD format."
      • addedInput schema / properties / featuring / description
        Added value: +"Artist or performer name."
      • addedInput schema / properties / limit / default
        Added value: +12
      • addedInput schema / properties / limit / description
        Added 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."
      • addedInput schema / properties / max_price / description
        Added value: +"Preference hint used by recommend_events and plan_night."
      • addedInput schema / properties / offset / default
        Added value: +0
      • removedInput schema / properties / promoter
        Removed value: -{
        -  "type": "string"
        -}
      • addedInput schema / properties / query / description
        Added 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."
      • addedInput schema / properties / result_limit / default
        Added value: +10
      • addedInput schema / properties / when / description
        Added value: +"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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"
        +}
  7. 4 tool updates
    • Addedfind_scene_entities
    • Changedplan_night1 field changed
      • addedInput schema / properties / promoter
        Added value: +{
        +  "type": "string"
        +}
    • Changedrecommend_events1 field changed
      • addedInput schema / properties / promoter
        Added value: +{
        +  "type": "string"
        +}
    • Changedsearch_events1 field changed
      • addedInput schema / properties / promoter
        Added value: +{
        +  "type": "string"
        +}
  8. 22 tool updates
    • Changedcreate_event_calendar_file3 fields changed
      • removedInput schema / properties / event_id / description
        Removed value: -"Event id returned by search, recommendations, plan_night, get_event, or a ticket quote."
      • removedInput schema / properties / status / description
        Removed value: -"Calendar status, for example CONFIRMED or TENTATIVE."
      • changedOutput 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
    • Changedcreate_event_preference_profile6 fields changed
      • addedInput schema / $defs
        Added 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"
        +  }
        +}
      • removedInput schema / properties / consent / description
        Removed value: -"Must be true only after the user agreed to save preferences."
      • addedInput schema / properties / preferences / $ref
        Added value: +"#/$defs/preferences"
      • removedInput schema / properties / preferences / properties
        Removed 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"
        -  }
        -}
      • removedInput schema / properties / preferences / type
        Removed value: -"object"
      • changedOutput 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
    • Changeddelete_event_preferences4 fields changed
      • removedInput schema / properties / confirm_delete / description
        Removed value: -"Must be true only after the user confirms deletion of Dizko connector preferences and feedback history."
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedget_artist_events9 fields changed
      • removedInput schema / properties / artists / description
        Removed value: -"Artist, DJ, performer, or comedian names to look up (max 8 per call)."
      • removedInput schema / properties / city / description
        Removed value: -"Optional city to scope the search; omit to search all cities."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today."
      • removedInput schema / properties / date_to / description
        Removed value: -"Optional inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / limit_per_artist / default
        Removed value: -5
      • removedInput schema / properties / limit_per_artist / description
        Removed value: -"Upcoming events per artist (max 10)."
      • removedInput schema / properties / profile_id / description
        Removed value: -"Optional Dizko preference profile id. When artists is omitted, the profile's saved featuring list is used."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedget_city_pulse6 fields changed
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format. Defaults to today."
      • removedInput schema / properties / days / default
        Removed value: -7
      • removedInput schema / properties / days / description
        Removed value: -"Window length in days starting from date_from (max 14)."
      • removedInput schema / properties / event_types / description
        Removed value: -"Optional event-type filter, for example party."
      • changedOutput 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
    • Changedget_daily_roundup13 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in the ranking."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date / description
        Removed value: -"Target day in YYYY-MM-DD format. Defaults to today."
      • removedInput schema / properties / limit / default
        Removed value: -100
      • removedInput schema / properties / limit / description
        Removed value: -"How many of the day's events to fetch and rank."
      • removedInput schema / properties / profile_id / description
        Removed value: -"Optional Dizko preference profile id. Supply it with profile_secret to personalize the picks with saved, learned, and per-day preferences."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • removedInput schema / properties / section_limit / default
        Removed value: -5
      • removedInput schema / properties / section_limit / description
        Removed value: -"Events per category section (max 10)."
      • removedInput schema / properties / top_limit / default
        Removed value: -5
      • removedInput schema / properties / top_limit / description
        Removed value: -"Top picks to feature (max 10)."
      • removedInput schema / properties / when / description
        Removed value: -"Alternative date preset: today, tonight, or tomorrow."
      • changedOutput 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
    • Changedget_event2 fields changed
      • removedInput schema / properties / id / description
        Removed value: -"Event id."
      • changedOutput 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
    • Changedget_event_feedback_prompt2 fields changed
      • removedInput schema / properties / attended_at / description
        Removed value: -"Optional ISO date/time or YYYY-MM-DD the user attended or planned to attend."
      • changedOutput 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
    • Changedget_event_preferences3 fields changed
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedget_event_search_followups14 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to
        Removed value: -{
        -  "description": "Inclusive end date in YYYY-MM-DD format.",
        -  "type": "string"
        -}
      • removedInput schema / properties / featuring
        Removed value: -{
        -  "description": "Artist or performer name.",
        -  "type": "string"
        -}
      • removedInput schema / properties / limit
        Removed 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"
        -}
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset
        Removed value: -{
        -  "default": 0,
        -  "type": "number"
        -}
      • removedInput schema / properties / price_min
        Removed value: -{
        -  "type": "number"
        -}
      • removedInput schema / properties / pride
        Removed value: -{
        -  "type": "boolean"
        -}
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit
        Removed value: -{
        -  "default": 10,
        -  "type": "number"
        -}
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
    • Changedget_preference_onboarding2 fields changed
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id if already known."
      • changedOutput 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
    • Changedget_ticket_offers2 fields changed
      • removedInput schema / properties / event_id / description
        Removed value: -"Event id returned by search, recommendations, plan_night, or get_event."
      • changedOutput 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
    • Changedget_ticket_purchase_policy1 field changed
      • changedOutput 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
    • Addedlist_cities
    • Changedplan_night15 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to / description
        Removed value: -"Inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / featuring / description
        Removed value: -"Artist or performer name."
      • removedInput schema / properties / limit / default
        Removed value: -12
      • removedInput schema / properties / limit / description
        Removed 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."
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset / default
        Removed value: -0
      • removedInput schema / properties / profile_id / description
        Removed value: -"Optional Dizko preference profile id. Supply it with profile_secret to apply saved and learned taste."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
    • Changedpurchase_ticket_order5 fields changed
      • removedInput schema / properties / confirmation_text / description
        Removed value: -"User's explicit written confirmation, including buy/purchase, quantity, and max_total when present."
      • removedInput schema / properties / idempotency_key / description
        Removed value: -"Optional idempotency key for integrated purchase providers."
      • removedInput schema / properties / quote_token / description
        Removed value: -"Opaque quote token returned by quote_ticket_order."
      • removedInput schema / properties / user_payment_profile_id / description
        Removed value: -"Provider-specific saved payment profile id, when an integrated provider supports autonomous purchase."
      • changedOutput 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
    • Changedquote_ticket_order8 fields changed
      • removedInput schema / properties / currency / description
        Removed value: -"Preferred currency for max_total, for example USD."
      • removedInput schema / properties / event_id / description
        Removed value: -"Event id returned by search, recommendations, plan_night, or get_event."
      • removedInput schema / properties / max_total / description
        Removed value: -"Maximum all-in total the user authorizes before the agent must stop and ask again."
      • removedInput schema / properties / offer_id / description
        Removed value: -"Optional offer_id returned by get_ticket_offers."
      • removedInput schema / properties / quantity / default
        Removed value: -1
      • removedInput schema / properties / refund_terms / description
        Removed value: -"Minimum refund/transfer terms the user accepts."
      • removedInput schema / properties / ticket_type / description
        Removed value: -"Requested ticket type, for example GA, balcony, seated, VIP, or best available."
      • changedOutput 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
    • Changedrecommend_events13 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to / description
        Removed value: -"Inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / featuring / description
        Removed value: -"Artist or performer name."
      • removedInput schema / properties / limit / default
        Removed value: -12
      • removedInput schema / properties / limit / description
        Removed 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."
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset / default
        Removed value: -0
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
    • Changedrecommend_events_for_user4 fields changed
      • removedInput schema / properties / limit / default
        Removed value: -50
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • changedOutput 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
    • Changedrecord_event_feedback3 fields changed
      • removedInput schema / properties / attended_at / description
        Removed value: -"ISO date/time or YYYY-MM-DD."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedsave_event_preferences9 fields changed
      • addedInput schema / $defs
        Added 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"
        +  }
        +}
      • removedInput schema / properties / consent / description
        Removed value: -"Must be true only after the user agreed to save preferences."
      • removedInput schema / properties / mode / default
        Removed value: -"merge"
      • addedInput schema / properties / preferences / $ref
        Added value: +"#/$defs/preferences"
      • removedInput schema / properties / preferences / properties
        Removed 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"
        -  }
        -}
      • removedInput schema / properties / preferences / type
        Removed value: -"object"
      • removedInput schema / properties / profile_id / description
        Removed value: -"Stable user/profile id."
      • removedInput schema / properties / profile_secret / description
        Removed value: -"Private profile secret returned when the profile was created."
      • changedOutput 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
    • Changedsearch_events13 fields changed
      • removedInput schema / properties / avoid / description
        Removed value: -"Terms to penalize in recommendations."
      • removedInput schema / properties / city / description
        Removed value: -"City name, for example berlin or new york."
      • removedInput schema / properties / date_from / description
        Removed value: -"Inclusive start date in YYYY-MM-DD format."
      • removedInput schema / properties / date_to / description
        Removed value: -"Inclusive end date in YYYY-MM-DD format."
      • removedInput schema / properties / featuring / description
        Removed value: -"Artist or performer name."
      • removedInput schema / properties / limit / default
        Removed value: -12
      • removedInput schema / properties / limit / description
        Removed 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."
      • removedInput schema / properties / max_price / description
        Removed value: -"Preference hint used by recommend_events and plan_night."
      • removedInput schema / properties / offset / default
        Removed value: -0
      • removedInput schema / properties / query / description
        Removed 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."
      • removedInput schema / properties / result_limit / default
        Removed value: -10
      • removedInput schema / properties / when / description
        Removed value: -"Date preset: today, tonight, tomorrow, weekend, week, this week, any, or YYYY-MM-DD."
      • changedOutput 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
  9. 21 tool updates
    • First observedcreate_event_calendar_file
    • First observedcreate_event_preference_profile
    • First observeddelete_event_preferences
    • First observedget_artist_events
    • First observedget_city_pulse
    • First observedget_daily_roundup
    • First observedget_event
    • First observedget_event_feedback_prompt
    • First observedget_event_preferences
    • First observedget_event_search_followups
    • First observedget_preference_onboarding
    • First observedget_ticket_offers
    • First observedget_ticket_purchase_policy
    • First observedplan_night
    • First observedpurchase_ticket_order
    • First observedquote_ticket_order
    • First observedrecommend_events
    • First observedrecommend_events_for_user
    • First observedrecord_event_feedback
    • First observedsave_event_preferences
    • First observedsearch_events

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources