action spinitron_get_personas_id { label: "Get Persona by id" provider: spinitron method: GET path: "/personas/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The `Persona` object describes a radio DJ/host. One person can have multiple personas" properties: { _links: { type: "object" properties: { self: { type: "object" properties: { href: { type: "string" } } } shows: { type: "array" items: { type: "object" additionalProperties: true } } } } bio: { type: "string" description: "HTML-formatted biography" } email: { type: "string" format: "email" description: "DJ/host's email address" } id: { type: "integer" } image: { type: "string" format: "url" } name: { type: "string" description: "On-air DJ/host name" } since: { type: "integer" format: "year" description: "Since what year has the DJ/host been at the station?" } website: { type: "string" format: "url" description: "URL to web site for the DJ/host" } } } }