Melbourne Airbnb Open Data
Detailed and summarized data of Airbnb activity in Melbourne, VIC, Australia
@kaggle.tylerx_melbourne_airbnb_open_data
Detailed and summarized data of Airbnb activity in Melbourne, VIC, Australia
@kaggle.tylerx_melbourne_airbnb_open_data
CREATE TABLE calendar_dec18 (
"listing_id" BIGINT,
"date" TIMESTAMP,
"available" VARCHAR,
"price" VARCHAR
);
CREATE TABLE cleansed_listings_dec18 (
"id" BIGINT,
"listing_url" VARCHAR,
"scrape_id" DOUBLE,
"last_scraped" TIMESTAMP,
"name" VARCHAR,
"summary" VARCHAR,
"space" VARCHAR,
"description" VARCHAR,
"neighborhood_overview" VARCHAR,
"notes" VARCHAR,
"transit" VARCHAR,
"access" VARCHAR,
"interaction" VARCHAR,
"house_rules" VARCHAR,
"picture_url" VARCHAR,
"host_id" BIGINT,
"host_url" VARCHAR,
"host_name" VARCHAR,
"host_since" TIMESTAMP,
"host_location" VARCHAR,
"host_about" VARCHAR,
"host_response_time" VARCHAR,
"host_response_rate" VARCHAR,
"host_is_superhost" VARCHAR,
"host_thumbnail_url" VARCHAR,
"host_picture_url" VARCHAR,
"host_neighborhood" VARCHAR,
"host_verifications" VARCHAR,
"host_has_profile_pic" VARCHAR,
"host_identity_verified" VARCHAR,
"street" VARCHAR,
"neighborhood" VARCHAR,
"city" VARCHAR,
"suburb" VARCHAR,
"state" VARCHAR,
"zipcode" VARCHAR,
"smart_location" VARCHAR,
"country_code" VARCHAR,
"country" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"is_location_exact" VARCHAR,
"property_type" VARCHAR,
"room_type" VARCHAR,
"accommodates" BIGINT,
"bathrooms" DOUBLE,
"bedrooms" DOUBLE,
"beds" DOUBLE,
"bed_type" VARCHAR,
"amenities" VARCHAR,
"price" BIGINT,
"weekly_price" DOUBLE,
"monthly_price" DOUBLE,
"security_deposit" DOUBLE,
"cleaning_fee" DOUBLE,
"guests_included" BIGINT,
"extra_people" BIGINT,
"minimum_nights" BIGINT,
"maximum_nights" BIGINT,
"calendar_updated" VARCHAR,
"has_availability" VARCHAR,
"availability_30" BIGINT,
"availability_60" BIGINT,
"availability_90" BIGINT,
"availability_365" BIGINT,
"calendar_last_scraped" TIMESTAMP,
"number_of_reviews" BIGINT,
"first_review" TIMESTAMP,
"last_review" TIMESTAMP,
"review_scores_rating" DOUBLE,
"review_scores_accuracy" DOUBLE,
"review_scores_cleanliness" DOUBLE,
"review_scores_checkin" DOUBLE,
"review_scores_communication" DOUBLE,
"review_scores_location" DOUBLE,
"review_scores_value" DOUBLE,
"requires_license" VARCHAR,
"license" VARCHAR,
"instant_bookable" VARCHAR,
"cancellation_policy" VARCHAR,
"require_guest_profile_picture" VARCHAR,
"require_guest_phone_verification" VARCHAR,
"calculated_host_listings_count" BIGINT,
"reviews_per_month" DOUBLE
);
CREATE TABLE listings_summary_dec18 (
"id" BIGINT,
"name" VARCHAR,
"host_id" BIGINT,
"host_name" VARCHAR,
"neighbourhood_group" VARCHAR,
"neighbourhood" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"room_type" VARCHAR,
"price" BIGINT,
"minimum_nights" BIGINT,
"number_of_reviews" BIGINT,
"last_review" TIMESTAMP,
"reviews_per_month" DOUBLE,
"calculated_host_listings_count" BIGINT,
"availability_365" BIGINT
);
CREATE TABLE neighbourhoods (
"neighbourhood_group" VARCHAR,
"neighbourhood" VARCHAR
);
CREATE TABLE reviews_dec18 (
"listing_id" BIGINT,
"id" BIGINT,
"date" TIMESTAMP,
"reviewer_id" BIGINT,
"reviewer_name" VARCHAR,
"comments" VARCHAR
);
CREATE TABLE reviews_summary_dec18 (
"listing_id" BIGINT,
"date" TIMESTAMP
);
Anyone who has the link will be able to view this.