public class NoteItem
{
private IList<string> _schemas = new List<string> { "theValidSchemaValueToAnAPI" };
[Required]
public IList<string> schemas { get { return _schemas; } set { _schemas = value; } }
public string noteId{ get; set; }
public string userId { get; set; }
}