parrish/json-schema_builder

View on GitHub
lib/json/schema_builder/string.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'entity'

module JSON
  module SchemaBuilder
    class String < Entity
      register :string
      attribute :min_length
      attribute :max_length
      attribute :pattern
      attribute :format
    end
  end
end