2024-11-30 13:27:21 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-11-30 14:24:02 +01:00
|
|
|
module Swagger
|
|
|
|
module Schema
|
|
|
|
USER = {
|
|
|
|
id: { type: :string, format: :uuid },
|
|
|
|
email: { type: :string, format: :email },
|
|
|
|
created_at: SwaggerResponseHelper::TIMESTAMP,
|
|
|
|
updated_at: SwaggerResponseHelper::TIMESTAMP
|
|
|
|
|
|
|
|
}
|
2024-11-30 19:57:08 +01:00
|
|
|
|
|
|
|
SLUG = {
|
|
|
|
name: 'slug',
|
|
|
|
in: :path,
|
|
|
|
type: :string,
|
|
|
|
example: :default,
|
|
|
|
description: 'Wedding slug'
|
|
|
|
}
|
2024-11-30 14:24:02 +01:00
|
|
|
end
|
|
|
|
end
|