Amazon Dynamo DB is schema-less, as you don’t have to specify non-key attributes at the time of table creation.
DynamoDB Data types are divided into 3 categories Scalar, Document and Set.
A List type attribute can store an ordered collection of values.
Lists like arrays are enclosed in square brackets: [ … ]
Elements of the list can be of different types
Elements in a list are accessed using 0 index, like in JSON arrays
A Map type attribute can store an unordered collection of name-value pairs.
Maps are enclosed in curly braces: { … }
Map is used for storing JSON data