Importing a simple post fails

Hey all, I’ve been trying to import a dummy blog post to Ghost but it fails silently. I’m not using the developer version of ghost btw.

The blog post I’m trying to import is a json file with the following content

{
“title”: “my blog post title”,
“mobiledoc”: “{"version":"0.3.1","atoms":,"cards":,"markups":,"sections":[[1,"p",[[0,,0,"You’re live, nice!"]]]]}”,
“status”: “published”,
“published_at”: 1283780649000
}

Can you please give any insights to why the blog doesn’t appear? Thank you

This works
The meta field was missing and it failed with a success message, sigh…

{
“db”: [
{
“meta”: {
“exported_on”: 1676720089473,
“version”: “5.34.1”
},
“data”: {
“posts”: [
{
“title”: “Some title here”,
“mobiledoc”: “Don’t forget this” ,
“featured”: 0,
“type”: “post”,
“status”: “published”,
“locale”: null,
“visibility”: “public”,
“email_recipient_filter”: “all”,
“created_at”: “2023-01-19T13:30:08.000Z”,
“updated_at”: “2023-02-02T13:23:55.000Z”,
“published_at”: “2023-01-19T13:30:15.000Z”,
“custom_excerpt”: null,
“codeinjection_head”: null,
“codeinjection_foot”: null,
“custom_template”: null,
“canonical_url”: null,
“newsletter_id”: null
}
]
}
}
]
}