Defines the pattern of a URL path.
A path pattern is an array of strings (static segments) and Valibot schemas (dynamic parameters). For example: ["users", string(), "posts", number()] matches /users/:userId/posts/:postId.
["users", string(), "posts", number()]
/users/:userId/posts/:postId
Defines the pattern of a URL path.