You can render dynamic data from these Data Classes inside your Velt Components Wireframe:

1. User: This represents the current logged-in user. It is available across all components.

2. UserContact: This represents the user contact object (it has the same class as the User). It is available on the autocomplete component where the user contacts are rendered.

3. CommentAnnotation: This represents the comment thread. This is available within the comment feature components.

4. Comment: This represents the message inside the thread. This is available within the comment feature components.

Example Usage:

<VeltAutocompleteOptionWireframe>
  <VeltData path='userContact.name' />
  <VeltData path='userContact.organizationName' />
</VeltAutocompleteOptionWireframe>