action mineskin_get_get_id_id { label: "get_get_id_id" description: "Deprecated. Use /get/uuid instead." provider: mineskin method: GET path: "/get/id/{id}" encoding: json input: { type: "object" properties: { id: { type: "number" format: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["data", "id", "model"] properties: { account: { type: "integer" } accountId: { type: "integer" } data: { type: "object" properties: { texture: { type: "object" properties: { signature: { type: "string" } url: { type: "string" } value: { type: "string" } } } uuid: { type: "string" } } } duration: { type: "number" } id: { type: "integer" } idStr: { type: "string" } model: { type: "string" enum: ["slim", "steve", "unknown"] } name: { type: "string" } private: { type: "boolean" } server: { type: "string" } timestamp: { type: "number" } uuid: { type: "string" } variant: { type: "string" enum: ["classic", "slim"] } views: { type: "number" } } } }