@namespace("Switchboard") protocol Specialty { /** The main class for this protocol */ record Specialty { /** The primary key */ int id; /** Name of the specialty */ string name; /** Url to the icon representing this specialty */ string description; } /** Look up many specialties in bulk */ array index(); /** Look up a specialty by id */ array show(int id); }