module OasRails::Utils

def hash_to_json_schema(hash)

def hash_to_json_schema(hash)
  {
    type: 'object',
    properties: hash_to_properties(hash),
    required: []
  }
end