@namespace("Switchboard") protocol Review { /** The main class for this protocol */ record Review { /** The reviews's id */ int id; /** The lawyer's id */ int lawyer_id; /** Overall rating **/ int rating; /** Title of the Review */ string title; /** The body text of the review */ string body; /** The integer timestamp of when the review was created */ int created_at; } /** Look up many reviews in bulk */ array index(); }