action dev_get_organization { label: "An organization" description: "This endpoint allows the client to retrieve a single organization by their username" provider: dev method: GET path: "/api/organizations/{username}" encoding: json input: { type: "object" properties: { username: { type: "string" } } required: ["username"] additionalProperties: false } output: { type: "object" items: { type: "object" description: "Representation of an Organization" properties: { github_username: { type: "string" } joined_at: { type: "string" } location: { type: "string" } name: { type: "string" } story: { type: "string" } summary: { type: "string" } tag_line: { type: "string" } tech_stack: { type: "string" } twitter_username: { type: "string" } type_of: { type: "string" } url: { type: "string" } username: { type: "string" } } } } }