fjaroli

screen

Sep 17th, 2025
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. {
  2. "routeName": "asset",
  3. "screenName": "Add Asset",
  4. "submitPostUrl": "https://assetstore.unity.com/",
  5. "entityConfigs": [
  6. {
  7. "jsonKey": "area",
  8. "code": "ASSET.AREA",
  9. "uiConfig": {
  10. "label": "Enter Land Area",
  11. "type": "UI_CONFIG_TYPE.TEXT_INPUT",
  12. "subType": "UI_CONFIG_SUB_TYPE.SHORT_TEXT",
  13. "options": null,
  14. "validationRules": {
  15. "isMandatory": true,
  16. "regEx": null
  17. }
  18. }
  19. },
  20. {
  21. "jsonKey": "type",
  22. "code": "ASSET.TYPE",
  23. "uiConfig": {
  24. "label": "Select Land Type",
  25. "type": "UI_CONFIG_TYPE.RADIO_OPTION",
  26. "subType": "UI_CONFIG_SUB_TYPE.SINGLE",
  27. "options": [
  28. {
  29. "label": "Rain fed",
  30. "code": "LAND_TYPE.RAIN_FED"
  31. },
  32. {
  33. "label": "Dry",
  34. "code": "LAND_TYPE.DRY"
  35. }
  36. ],
  37. "validationRules": {
  38. "isMandatory": true,
  39. "regEx": null
  40. }
  41. }
  42. },
  43. {
  44. "jsonKey": "khata_number",
  45. "code": "ASSET.KHATA_NUMBER",
  46. "uiConfig": {
  47. "label": "Enter Khata Number",
  48. "type": "UI_CONFIG_TYPE.TEXT_INPUT",
  49. "subType": "UI_CONFIG_SUB_TYPE.SHORT_TEXT",
  50. "options": null,
  51. "validationRules": {
  52. "isMandatory": false,
  53. "regEx": null
  54. }
  55. }
  56. }
  57. ]
  58. }
Advertisement
Add Comment
Please, Sign In to add comment