# frozen_string_literal: true module Api module V1 class ExperimentSerializer < ActiveModel::Serializer type :experiments attributes :id, :name, :description, :created_by_id, :archived end end end