есть модель документа, у которого может быть много parties, то есть массив хешей.
По идее должно быть так:
requires :parties, type: Array[Hash] do
requires :label, type: String
requires :name, type: String
end
Что должно дать:
parties: [
{ label: 'some', name: 'some' },
{ label: 'some2', name: 'some2' },
...
]
а что сейчас дает?
Обсуждают сегодня