This page includes some notes on Sample Databases included in 2.0.
Document Naming Conventions
Use Human Readable Key Names, spaces change to "_"
document key: new_belgium
Use "-" as separator in key parts for cross operating system filename compatibility
document key: new_belgium-fat_tire
Normalize names to ASCII-7 and remove punctuation and lowercase
document key: "borsodi_sorgyar"
json key: { "brewery_name": "Borsodi Sörgyár" }
Use "type" in Document as json key for use in Views (Secondary Index/Query)
document key: new_belgium
value: { "type": "brewery", ... }
document key: new_belgium-fat_tire
value: { "type": "beer", ... }