inetstudio/articles

Package for articles

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

This package is auto-updated.

Last update: 2024-05-05 17:23:45 UTC


README

curl -X PUT "localhost:9200/app_index_articles" -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"
          },
          "ingredients":{
             "type":"nested"
          }            
       } 
   }
}
'