単一の StringProperty() の代わりに、文字列のリストを格納したい
class BlogPost(ndb.Model):
s1 = ndb.StringProperty(required=True)
s2 = ndb.StringProperty(required=True)
s3 = ndb.StringProperty(required=True)
むしろ行きたい
class BlogPost(ndb.Model):
my_strings = ndb.StringListProperty() # does this exist?