Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {
  2. id: 't-123'
  3. attributes: [
  4. {
  5. id: 'a-1',
  6. type: 'INPUT'
  7. },
  8. {
  9. id: 'a-2',
  10. type: 'SELECT',
  11. option: [
  12. {key: 'DE', label: 'Germany'},
  13. {key: 'US', label: 'United States'}
  14. ]
  15. }
  16. ]
  17. }
  18.  
  19. {
  20. id: 'f-1',
  21. type: 't-123',
  22. values: [
  23. {attribute: 'a-1', value: 'my random string'},
  24. {attribute: 'a-2', value: 'DE'}
  25. ]
  26. }
  27.  
  28. {
  29. id: 'f-1',
  30. type: 't-123',
  31. values: [
  32. {attribute: 'a-1', value: 'my random string'},
  33. {attribute: 'a-2', value: {key:'DE', label:'Germany'}}
  34. ]
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement