I'd also recommend taking a look at Cloud CMS (http://www.cloudcms.com).
Full Disclosure - I'm one of the founders of Cloud CMS. So I'm a big fan. Plus, I think it's awesome.
Our platform is entirely built around JSON and JSON Schema for modeling content. You just write content in and it's immediately versioned, indexed and available for query and full-text search. Our data store is fully consistent with content modeling (types, properties, associations, aspects) and validation. Basically, we try to handle all the hard stuff so that you can just get coding.
We provide drivers for native devices as well as JavaScript/HTML5, Java and other languages. Our JavaScript driver features asynchronous chaining so that you code becomes really simple. Like this:
// define an article using JSON schema
branch.create({
"qname": "custom:article",
"properties": {
"header": {
"type": "string"
},
"rating": {
"type": "number",
"minValue": 0
},
"author": {
"type": "string"
}
}
});
// create an article
branch.createNode({
"_type": "custom:article",
"header": "Pink Floyd Reunites for World Tour!",
"rating": 50,
"author": "gilmour"
});
// search for articles using full-text search
branch.searchNodes("Pink Floyd").each(function() {
$('body').append("Found an article: " + this.get('header') + "<br/>");
});
// query for articles with structured MongoDB query
branch.queryNodes({
"author": "gilmour",
"rating": {
">": 40
}
}).count(function(count) {
$('body').append("There were: " + count + " total articles");
});
That's a rough example. There's a lot more available on the web site.
Cloud CMS is worth a look because it's a genuine content platform built on top of JSON, MongoDB and a pure cloud architecture. It scales well but also has a lot of the enterprise-class features of big old expensive software. We really want to keep costs low and so we've elected to go with a pure metered billing model (as a utility, kind of like your electric bill).