You are here

search_autocomplete.schema.yml in Search Autocomplete 8

Same filename and directory in other branches
  1. 2.x config/schema/search_autocomplete.schema.yml
config/schema/search_autocomplete.schema.yml

File

config/schema/search_autocomplete.schema.yml
View source
  1. # Schema for the configuration files of the Autocompletion Configuration.
  2. # This schema tells the config system how to read our config YML files.
  3. # Our default configurations are stored in files
  4. # config/search_autocomplete.autocompletion_configuration.%.yml
  5. # Documentation for schema files like this one is located here:
  6. # https://drupal.org/node/1905070
  7. search_autocomplete.autocompletion_configuration.*:
  8. type: config_object
  9. label: 'Autocompletion Configuration'
  10. mapping:
  11. id:
  12. type: string
  13. label: 'Autocompletion Configuration ID'
  14. uuid:
  15. type: string
  16. label: 'UUID'
  17. label:
  18. type: label
  19. label: 'Label'
  20. selector:
  21. type: string
  22. label: 'Field Selector'
  23. status:
  24. type: boolean
  25. label: 'Enabled'
  26. minChar:
  27. type: integer
  28. label: 'Number of char before autocompletion'
  29. autoSubmit:
  30. type: boolean
  31. label: 'Auto Submit the form when suggestion is selected'
  32. autoRedirect:
  33. type: boolean
  34. label: 'Redirects user to suggestion when suggestion is selected'
  35. maxSuggestions:
  36. type: integer
  37. label: 'Maximum number of displayed suggestions'
  38. noResultLabel:
  39. type: label
  40. label: 'Custom "no result" message label'
  41. noResultValue:
  42. type: string
  43. label: 'Custom "no result" message value'
  44. noResultLink:
  45. type: uri
  46. label: 'Custom "no result" URL redirection'
  47. moreResultsLabel:
  48. type: label
  49. label: 'Custom "view all results" message label'
  50. moreResultsValue:
  51. type: string
  52. label: 'Custom "view all results" message value'
  53. moreResultsLink:
  54. type: uri
  55. label: 'Custom "view all results" URL redirection'
  56. source:
  57. type: uri
  58. label: 'Source of the suggestions'
  59. theme:
  60. type: string
  61. label: 'Name of the CSS filename.'
  62. editable:
  63. type: boolean
  64. label: 'Define if users can edit this configuration.'
  65. deletable:
  66. type: boolean
  67. label: 'Define if users can delete this configuration.'
  68. search_autocomplete.settings:
  69. type: config_object
  70. label: 'Search Autocomplete module settings'
  71. mapping:
  72. admin_helper:
  73. type: boolean
  74. label: 'Use admin tool'