global

def new?

{new: true} or {new: nil, id: nil}
Does this metadata describe deserialization to a new model, either by
def new?
  if new.nil?
    id.nil?
  else
    new == true
  end
end