int32; category: { id: int32; name: string; }; name: string; photoUrls: string[]; tags: { id: int32; name: string; }[]; status: "available" | "pending" | "sold"; }; @service({ title: "PetStore", }) @versioned(Versions) namespace PetStore { @operationId("findPetById") @summary("find-pet-by-id") @get findPetById(@path id: int32): { @body pet: Pet;