Skip to content

Instantly share code, notes, and snippets.

@insin
Created November 2, 2014 12:20
Show Gist options
  • Save insin/0983f9982ed82275cb06 to your computer and use it in GitHub Desktop.
Save insin/0983f9982ed82275cb06 to your computer and use it in GitHub Desktop.
fieldName: String
errorCode: String
Form {
data: fieldName -> Any
initial: fieldName -> Any
fields: fieldName -> Field
_errors: ErrorObject
}
Field {
required: Boolean
label: String
initial: Any
helpText: String
custom: Any
widget: Widget
errorMessages: errorCode -> String
}
Widget {
choices
}
ErrorObject {
errors: fieldName -> ErrorList
}
ErrorList {
data: ValidationError[]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment