{
	"$schema": "https://station.us/schemas/plans.json",
	"updated_at": "2026-04-30",
	"currency": "USD",
	"plans": [
		{
			"id": "community",
			"name": "Community Membership",
			"monthly_usd": 50,
			"price_display": "~$50/mo",
			"description": "Drop in for events, meet people, use the lounge. No reserved desk.",
			"features": [
				"Lounge access during staffed hours",
				"Member-only events",
				"Mailing-list + Slack invite"
			],
			"access": "staffed_hours_only",
			"agent_callable_actions": ["request_tour", "request_info"]
		},
		{
			"id": "hot-desk",
			"name": "24/7 Hot Desk",
			"monthly_usd": 300,
			"price_display": "~$300/mo",
			"description": "Any open desk, any time. Building access around the clock.",
			"features": [
				"24/7 keycard access",
				"Any open desk",
				"Conference room credits",
				"Mail + package handling"
			],
			"access": "24_7",
			"agent_callable_actions": ["request_tour", "request_info"]
		},
		{
			"id": "dedicated-desk",
			"name": "Dedicated Desk",
			"monthly_usd": 600,
			"price_display": "~$600/mo",
			"description": "Your assigned desk, monitor setup, locker. Leave your stuff overnight.",
			"features": [
				"Assigned desk",
				"Locker",
				"24/7 keycard access",
				"Conference room credits",
				"Mail + package handling"
			],
			"access": "24_7",
			"agent_callable_actions": ["request_tour", "request_info"]
		},
		{
			"id": "private-office",
			"name": "Private Office",
			"monthly_usd_min": 1500,
			"monthly_usd_max": 7500,
			"price_display": "$1,500-7,500/mo (sized 2-10 people)",
			"description": "Lockable room. Your own door, whiteboard, and meeting space.",
			"features": [
				"Lockable office",
				"24/7 keycard access",
				"Furnished",
				"Conference room credits",
				"Whiteboard"
			],
			"size_options": [
				{ "people": 2, "monthly_usd": 1500 },
				{ "people": 4, "monthly_usd": 2750 },
				{ "people": 6, "monthly_usd": 4250 },
				{ "people": 8, "monthly_usd": 5750 },
				{ "people": 10, "monthly_usd": 7500 }
			],
			"access": "24_7",
			"agent_callable_actions": ["request_tour", "request_quote"]
		}
	],
	"comp_eligibility_note": "Capital Factory portfolio companies, mentors, military programs, and IC members may qualify for comp pricing. Contact hello@station.us with subject [comp].",
	"agent_actions": {
		"request_tour": {
			"method": "POST",
			"url": "https://api.station.us/v1/leads",
			"required_headers": ["X-Agent-Actor"],
			"body_schema": {
				"kind": "tour",
				"name": "string",
				"email": "string (RFC 5322)",
				"plan_interest": "one of plan ids above (optional)",
				"preferred_time": "ISO 8601 (optional)",
				"notes": "string (optional)"
			}
		}
	}
}
