action motaword_get_style_guide { label: "View a style guide" description: "View the details of a style guide uploaded to a project" provider: motaword method: GET path: "/projects/{projectId}/styleguides/{styleGuideId}" encoding: json input: { type: "object" properties: { projectId: { type: "integer" format: "int64" } styleGuideId: { type: "integer" format: "int64" } "with[]": { type: "array" items: { type: "string" enum: ["preview"] } } } required: ["projectId", "styleGuideId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } links: { type: "object" } name: { type: "string" } uploaded_at: { type: "integer" format: "int64" description: "Unix epoch time" } } } }