inetstudio/ingredients

Package for ingredients materials

Installs: 3 359

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/inetstudio/ingredients

v10.0.1 2024-03-05 17:01 UTC

README

curl -X PUT "localhost:9200/app_index_ingredients" -H 'Content-Type: application/json' -d'
{
   "mappings":{
      "properties":{
          "type": {
             "type":"keyword"
          },
          "id":{
             "type":"integer"
          },
          "is_published": {
             "type":"boolean"
          },       
          "classifiers": {
          	"type":"integer"
          }, 
          "title":{
             "type":"text"
          },
          "description":{
             "type":"text"
          },
          "content":{
             "type":"text"
          },
          "publish_date": {
             "type":"date"
          },
          "tags":{
             "type":"nested"
          },
          "products":{
             "type":"nested"
          }
       }
   }
}
'