Austin Airbnb Listings
Properties, Reviews, and Prices
@kaggle.thedevastator_exploring_airbnb_in_austin_hosts_amenities_and_n
Properties, Reviews, and Prices
@kaggle.thedevastator_exploring_airbnb_in_austin_hosts_amenities_and_n
CREATE TABLE calendar (
"index" BIGINT,
"listing_id" BIGINT,
"date" TIMESTAMP,
"available" VARCHAR,
"price" VARCHAR
);
CREATE TABLE listings (
"index" BIGINT,
"id" BIGINT,
"listing_url" VARCHAR,
"scrape_id" BIGINT,
"last_scraped" TIMESTAMP,
"name" VARCHAR,
"summary" VARCHAR,
"space" VARCHAR,
"description" VARCHAR,
"experiences_offered" VARCHAR,
"neighborhood_overview" VARCHAR,
"notes" VARCHAR,
"transit" VARCHAR,
"thumbnail_url" VARCHAR,
"medium_url" VARCHAR,
"picture_url" VARCHAR,
"xl_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_acceptance_rate" VARCHAR,
"host_is_superhost" VARCHAR,
"host_thumbnail_url" VARCHAR,
"host_picture_url" VARCHAR,
"host_neighbourhood" VARCHAR,
"host_listings_count" DOUBLE,
"host_total_listings_count" DOUBLE,
"host_verifications" VARCHAR,
"host_has_profile_pic" VARCHAR,
"host_identity_verified" VARCHAR,
"street" VARCHAR,
"neighbourhood" VARCHAR,
"neighbourhood_cleansed" BIGINT,
"neighbourhood_group_cleansed" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"zipcode" DOUBLE,
"market" 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,
"square_feet" DOUBLE,
"price" VARCHAR,
"weekly_price" VARCHAR,
"monthly_price" VARCHAR,
"security_deposit" VARCHAR,
"cleaning_fee" VARCHAR,
"guests_included" BIGINT,
"extra_people" VARCHAR,
"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" DOUBLE,
"jurisdiction_names" 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 (
"index" BIGINT,
"id" BIGINT,
"name" VARCHAR,
"host_id" BIGINT,
"host_name" VARCHAR,
"neighbourhood_group" VARCHAR,
"neighbourhood" BIGINT,
"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 (
"index" BIGINT,
"neighbourhood_group" VARCHAR,
"neighbourhood" BIGINT
);
CREATE TABLE reviews (
"index" BIGINT,
"listing_id" BIGINT,
"id" BIGINT,
"date" TIMESTAMP,
"reviewer_id" BIGINT,
"reviewer_name" VARCHAR,
"comments" VARCHAR
);
CREATE TABLE reviews_summary (
"index" BIGINT,
"listing_id" BIGINT,
"date" TIMESTAMP
);
Anyone who has the link will be able to view this.