lib/dhis2/api/version228/data_element.rb

Summary

Maintainability
A
2 hrs
Test Coverage
# frozen_string_literal: true

module Dhis2
  module Api
    module Version228
      class DataElement < ::Dhis2::Api::Base
        include ::Dhis2::Api::Listable
        include ::Dhis2::Api::Findable
        include ::Dhis2::Api::Creatable
        include ::Dhis2::Api::BulkCreatable
        include ::Dhis2::Api::Updatable
        include ::Dhis2::Api::Deletable
        include ::Dhis2::Api::Shared::SaveValidator

        Schema = Dry::Validation.Schema do
          required(:name).filled
          required(:short_name).filled
          required(:aggregation_type).value(
            included_in?: ::Dhis2::Api::Version228::Constants.aggregation_types
          )
          required(:domain_type).value(
            included_in?: ::Dhis2::Api::Version228::Constants.domain_types
          )
          required(:value_type).value(
            included_in?: ::Dhis2::Api::Version228::Constants.value_types
          )
        end

        def self.creation_defaults(args)
          {
            aggregation_type:    "SUM",
            code:                args[:short_name],
            domain_type:         "AGGREGATE",
            type:                "int",
            value_type:          "NUMBER",
            zero_is_significant: true
          }
        end
      end
    end
  end
end