A plugin to show and edit JSON objects within Administrate. inspired by Administrate::Field::JSON.
This gem uses jsoneditor.
Add this line to your application's Gemfile:
gem 'administrate-field-jsonb'And then execute:
bundleIf you are using asset pipeline, add the following lines to your manifest.js:
//= link administrate-field-jsonb/application.css
//= link administrate-field-jsonb/application.jsThe manifest file is at app/assets/config by default.
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB
}.freezeIf you have some kind of serialization, you can call methods on your object with transform option.
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB.with_options(
    transform: %w[to_h symbolize_keys]
  )
}.freezeIt also supports Proc.
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB.with_options(
    transform: [:transformation, Proc.new { |item| item.merge({ foo: 'bar' }) }]
  )
}.freezeAnd there is a built in parse_json option, it will call JSON.parse(your_object) on your object.
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB.with_options(
    transform: [:parse_json, :some_other_stuff]
  )
}.freezeIf you want to edit json displaying on show page, you can use advanced_view option (both JSON and arrays are supported).
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB.with_options(transform: %i[to_h symbolize_keys], advanced_view: {
    company:  Field::String,
    position: Field::String,
    skills: Field::JSONB.with_options(advanced_view: {
      'name'  => Field::String,
      'years' => Field::Number.with_options(suffix: ' years')
    })
  }),
  languages: Field::JSONB.with_options(advanced_view: {
    'title' => Field::String,
    'code'  => Field::String,
  })
}.freezeNOTE: don't define advanced_view option if you want to display JSON with the jsoneditor.
To customize what to display if you have an empty value, use blank_sign option, by default it's -.
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB.with_options(
    blank_sign: 'oops, missed'
  )
}.freezeIn some situations you may preffer not to nullify empty records. For example you store your JSONB in not null database column and always have at least an empty json object {}. In such situation you can use nil_blank option:
ATTRIBUTE_TYPES = {
  # ...
  details: Field::JSONB.with_options(
    nil_blank: false
  )
}.freezeIf you want to store your JSON in hash format and not a string add this to your model.
def your_field_name=(value)
  self[:your_field_name] = value.is_a?(String) ? JSON.parse(value) : value
endExample:
def details=(value)
  self[:details] = value.is_a?(String) ? JSON.parse(value) : value
endIf you don't see details in advanced_view, try to add this
transform: %i[to_h symbolize_keys]or use string keys.
languages: Field::JSONB.with_options(advanced_view: {
  'title' => Field::String,
  'code'  => Field::String,
})Copyright © 2015-2025 Codica. It is released under the MIT License.
Administrate::Field::Jsonb is maintained by Codica. The names and logos for Codica are trademarks of Codica.
We love open source software! See our other projects or hire us to design, develop, and grow your product.




