import "@typespec/http"; using TypeSpec.Http; model User { id: string; name: string; birthday?: utcDateTime; address: Address; } model Address { street: string; city: string; state: string; zip: string; } @route("/users") interface Users { list(@query limit: int32, @query skip: int32): User[]; create(@body user: User): User; get(@path id: string): User; } ä¸è¨ã®ã³ã¼ããã³ã³ãã¤ã«ããã¨ã以ä¸ã®ãã㪠OpenAPI ã®ã¹ãã¼ããåºåããã¾


{{#tags}}- {{label}}
{{/tags}}