Write-CRUD produces four PowerShell commands to help you interact with Storage.
You can Write-CRUD with an arbitrary set of fields
Write-CRUD -Table My -Partition CustomItem -TypeName MyCustomCrud -Field @{ 'Name' = 'The Name of the Item' 'Description' = 'The description of the item' }
It is significantly easier to use one of the many schemas available.
This will create the CRUD for a set of blogposts, based off of the schema found @ http://schema.org/BlogPosting.
Write-Crud -Table My -Partition Blog -Schema http://schema.org/BlogPosting -Noun Blog