{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbnb/refs/heads/main/json-schema/airbnb-experience-schema.json", "title": "Experience", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier of the experience." }, "name": { "type": "string", "description": "The display name of the experience." }, "description": { "type": "string", "description": "The full description of the experience and what guests will do." }, "category": { "type": "string", "description": "The activity category of the experience.", "enum": [ "arts_and_culture", "entertainment", "food_and_drink", "nature_and_outdoors", "sports", "tours", "wellness" ] }, "status": { "type": "string", "description": "The current status of the experience on the platform.", "enum": [ "active", "inactive", "pending", "suspended" ] }, "location": { "$ref": "#/components/schemas/ExperienceLocation" }, "duration_minutes": { "type": "integer", "description": "The duration of the experience in minutes.", "minimum": 30 }, "max_guests": { "type": "integer", "description": "The maximum number of guests per session.", "minimum": 1 }, "pricing": { "$ref": "#/components/schemas/ExperiencePricing" }, "languages": { "type": "array", "description": "The languages in which the experience is offered.", "items": { "type": "string" } }, "what_to_bring": { "type": "array", "description": "Items guests should bring to the experience.", "items": { "type": "string" } }, "accessibility": { "type": "string", "description": "Accessibility information for the experience." }, "photos": { "type": "array", "description": "Photos showcasing the experience.", "items": { "$ref": "#/components/schemas/ExperiencePhoto" } }, "host": { "$ref": "#/components/schemas/ExperienceHost" }, "created_at": { "type": "string", "format": "date-time", "description": "The timestamp when the experience was created." }, "updated_at": { "type": "string", "format": "date-time", "description": "The timestamp when the experience was last updated." } } }