11 lines
303 B
Ruby
11 lines
303 B
Ruby
|
module Swagger
|
||
|
module Schema
|
||
|
USER = {
|
||
|
id: { type: :string, format: :uuid },
|
||
|
email: { type: :string, format: :email },
|
||
|
created_at: SwaggerResponseHelper::TIMESTAMP,
|
||
|
updated_at: SwaggerResponseHelper::TIMESTAMP
|
||
|
|
||
|
}
|
||
|
end
|
||
|
end
|