action meshery_id_get_meshery_pattern { label: "Handle GET for a Meshery Pattern" description: "Fetches the pattern with the given id" provider: meshery method: GET path: "/api/pattern/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }