You just need to make StoreSchema inherit from PlainStoreSchema so that id and name are included:
class StoreSchema(PlainStoreSchema): items = fields.List(fields.Nested(PlainItemSchema()), dump_only=True)