{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://schema.mydesignsystem.com/search-form.schema.json",
  "title": "Search Form",
  "description": "Search form component for submitting search queries and displaying search results.",
  "type": "object",
  "properties": {
    "component": {
      "type": "string",
      "description": "ks-component attribute",
      "default": "dsa.search-form"
    },
    "result": {
      "type": "object",
      "properties": {
        "maxSubresults": {
          "type": "number",
          "description": "Max number of subresults of a single search result"
        },
        "showLink": {
          "$ref": "http://schema.mydesignsystem.com/search-result.schema.json#/properties/showLink"
        },
        "imageColSize": {
          "$ref": "http://schema.mydesignsystem.com/search-result.schema.json#/properties/imageColSize"
        }
      },
      "additionalProperties": false
    },
    "resultPerPage": {
      "type": "number",
      "default": 10
    },
    "moreButtonLabel": {
      "type": "string",
      "default": "View all results"
    }
  },
  "additionalProperties": false
}
