Learn Git by Building an SQL Reference Object

I have a problem with this task.

“This conflict is a little trickier. Make the JSON object whole again so you can add the changes and finish rebasing. Make sure you put all the references in their correct objects, and in the same order they were originally in. There may be a duplicate line you need to delete.”

I deleted unnecessary lines.
It looks like:
{
“database”: {
“create”: “CREATE DATABASE database_name;”,
“drop”: “DROP DATABASE database_name;”
},
“table”: {
“create”: “CREATE TABLE table_name();”,
“drop”: “DROP TABLE table_name;”
},
“row”: {
“insert”: “INSERT INTO table_name(columns) VALUES(values);”,
“update”: “UPDATE table_name SET column_name = new_value WHERE condition;”
},
“column”: {
“add”: “ALTER TABLE table_name ADD COLUMN column_name;”
}
}

I typed cat -vet sql_reference.json and everything was fine.