{
	"info": {
		"name": "Elastic Demo Antonshell part1",
		"_postman_id": "9c53c598-9df8-2703-8189-2cc7ba09b631",
		"description": "",
		"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
	},
	"item": [
		{
			"name": "Test",
			"request": {
				"method": "GET",
				"header": [],
				"body": {},
				"url": "http://localhost:9200/",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Create Index",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n  \"settings\": {\n    \"analysis\": {\n      \"filter\": {\n        \"my_synonym_filter\": {\n          \"type\": \"synonym\",\n          \"synonyms\": [\n            \"шуруповерт, отвертка\"\n          ]\n        },\n        \"ru_stop\": {\n          \"type\": \"stop\",\n          \"stopwords\": \"_russian_\"\n        },\n        \"ru_stemmer\": {\n          \"type\": \"stemmer\",\n          \"language\": \"russian\"\n        }\n      },\n      \"analyzer\": {\n        \"my_synonyms\": {\n          \"tokenizer\": \"standard\",\n          \"filter\": [\n            \"lowercase\",\n            \"my_synonym_filter\",\n            \"ru_stop\",\n            \"ru_stemmer\"\n          ]\n        }\n      }\n    }\n  }\n}"
				},
				"url": "http://localhost:9200/product",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Create Mapping",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n   \"properties\": {\n   \t  \"id\": {\n          \"type\": \"integer\"\n        },\n        \"sku\": {\n          \"type\": \"text\",\n          \"index\": true,\n          \"search_analyzer\": \"my_synonyms\",\n         \"analyzer\": \"my_synonyms\",\n         \"term_vector\": \"with_positions_offsets_payloads\"\n        },\n        \"name\": {\n          \"type\": \"text\",\n          \"index\": true,\n          \"search_analyzer\": \"my_synonyms\",\n         \"analyzer\": \"my_synonyms\",\n         \"term_vector\": \"with_positions_offsets_payloads\"\n        },\n        \"description\": {\n          \"type\": \"text\",\n          \"index\": true,\n          \"search_analyzer\": \"my_synonyms\",\n         \"analyzer\": \"my_synonyms\",\n         \"term_vector\": \"with_positions_offsets_payloads\"\n        },\n        \"price\": {\n          \"type\": \"double\"\n        },\n        \"created_at\": {\n          \"type\": \"text\",\n          \"index\": true,\n          \"search_analyzer\": \"my_synonyms\",\n         \"analyzer\": \"my_synonyms\",\n         \"term_vector\": \"with_positions_offsets_payloads\"\n        },\n        \"updated_at\": {\n          \"type\": \"text\",\n          \"index\": true,\n          \"search_analyzer\": \"my_synonyms\",\n         \"analyzer\": \"my_synonyms\",\n         \"term_vector\": \"with_positions_offsets_payloads\"\n        }\n   }\n}"
				},
				"url": "http://localhost:9200/product/_mapping/type",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Create Product",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{ \n    \"id\": 1,\n    \"sku\": \"ИНТЕРСКОЛ ОА-3,6Ф\",\n    \"name\": \"Отвертка аккумуляторная ИНТЕРСКОЛ ОА-3,6Ф блистер (433.0.2.00)\",\n    \"description\": \"Отвертка аккумуляторная ИНТЕРСКОЛ ОА-3,6Ф блистер (433.0.2.00) li-ion Номинальное напряжение, В 3,6 Частота вращения, об/мин 210 Макс. Крутящий момент, Нм 5 Число ступеней регулировки крутящего момента 15+1 Масса, кг 0,5 Особенности: Технология Li-ion, Редуктор с металлическими пластинами, компактность, светодиодный фонарь, индикатор заряда, LED-подсветка.\",\n    \"attribute_set_id\": 4,\n    \"price\": 100,\n    \"created_at\": \"2017-12-04 10:08:12\",\n    \"updated_at\": \"2017-12-27 10:28:36\" \n}"
				},
				"url": "http://localhost:9200/product/type/1",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Get By ID",
			"request": {
				"method": "GET",
				"header": [],
				"body": {},
				"url": "http://localhost:9200/product/type/1",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Get all",
			"request": {
				"method": "GET",
				"header": [],
				"body": {},
				"url": {
					"raw": "http://127.0.0.1:9200/product/_search?pretty=true&q=*:*",
					"protocol": "http",
					"host": [
						"127",
						"0",
						"0",
						"1"
					],
					"port": "9200",
					"path": [
						"product",
						"_search"
					],
					"query": [
						{
							"key": "pretty",
							"value": "true",
							"equals": true
						},
						{
							"key": "q",
							"value": "*:*",
							"equals": true
						}
					]
				},
				"description": ""
			},
			"response": []
		},
		{
			"name": "Search By Field",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n  \"query\": {\n    \"match\": {\n      \"sku\": \"Интерскол\"\n    }\n  }\n}\n"
				},
				"url": "http://localhost:9200/product/type/_search",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Search By All",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n  \"query\": {\n    \"multi_match\" : {\n      \"query\": \"Отвертка\"\n    }\n  }\n}\n"
				},
				"url": "http://localhost:9200/product/type/_search",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Search By Field + Paging",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n  \"from\" : 0, \"size\" : 20,\n  \"query\": {\n    \"match\": {\n      \"sku\": \"Интерскол\"\n    }\n  }\n}\n"
				},
				"url": "http://localhost:9200/product/type/_search",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Search + Sort",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"sort\" : {\n        \"sku\": {\n        \"order\": \"asc\",\n        \"mode\":  \"min\"\n      }\n    },\n    \"_source\": [\"id\", \"sku\",\"name\"],\n    \"size\": 2\n}\n"
				},
				"url": "http://localhost:9200/product/type/_search",
				"description": ""
			},
			"response": []
		},
		{
			"name": "Delete All",
			"request": {
				"method": "DELETE",
				"header": [],
				"body": {},
				"url": "http://localhost:9200/_all",
				"description": ""
			},
			"response": []
		}
	]
}