Skip to content

Instantly share code, notes, and snippets.

@Aragroth
Created October 27, 2020 18:58
Show Gist options
  • Save Aragroth/2d95ee7337dc475d513defe70d511c4c to your computer and use it in GitHub Desktop.
Save Aragroth/2d95ee7337dc475d513defe70d511c4c to your computer and use it in GitHub Desktop.
elasticsearch movies mapping
PUT /movies
{
"mappings": {
"dynamic": "strict",
"properties": {
"id": {
"type": "keyword"
},
"title": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"director": {
"properties": {
"id": {
"type": "keyword"
},
"full_name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"birthday": {
"type": "date"
}
}
},
"description": {
"type": "text"
},
"rating": {
"type": "float"
},
"certificate": {
"type": "keyword"
},
"file_path": {
"type": "keyword"
},
"type": {
"type": "keyword"
},
"writers": {
"type": "nested",
"properties": {
"id": {
"type": "keyword"
},
"full_name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"birthday": {
"type": "date"
}
}
},
"actors": {
"type": "nested",
"properties": {
"id": {
"type": "keyword"
},
"full_name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"birthday": {
"type": "date"
}
}
},
"genres": {
"type": "nested",
"properties": {
"id": {
"type": "keyword"
},
"name": {
"type": "keyword"
},
"description": {
"type": "text"
}
}
}
}
}
}
POST /movies/_doc/1
{
"id": "3a71e59e-bf55-42af-b029-8220bdf3e1f8",
"title": "Hour of the Star",
"director": {
"id": "344073e1-1f24-4215-8458-dec9d3528f5a",
"full_name": "Suzana Amaral",
"birth_day": null
},
"description": "Macabea has just moved to the big city after her aunt, who raised her, died. She gets a job as a typist and moves into a boarding house with three other women. In her spare time she listens to time Radio Station; on Sundays she likes to ride the subways. She describes herself saying, \"I am a typist and a virgin, and I like Coca-Cola.\" Then she meets Olimpico, a north-easterner like herself, who has dreams of becoming a Congressman.",
"rating": 7.4,
"certificate": null,
"file_path": null,
"type": "",
"writers": [
{
"id": "344073e1-1f24-4215-8458-dec9d3528f5a",
"full_name": "Suzana Amaral",
"birth_day": null
},
{
"id": "2391c11b-b1f6-4e68-b462-2c797f969283",
"full_name": "Clarice Lispector",
"birth_day": null
},
{
"id": "d42db78c-fbd6-4050-8f68-09ec03ee3489",
"full_name": "Alfredo Oroz",
"birth_day": null
},
{
"id": "344073e1-1f24-4215-8458-dec9d3528f5a",
"full_name": "Suzana Amaral",
"birth_day": null
}
],
"actors": [
{
"id": "52f84607-95b9-4d38-947b-8991451b374b",
"full_name": "Marcelia Cartaxo",
"birth_day": null
},
{
"id": "83831885-2869-44ac-9765-4412cb7099fa",
"full_name": "Fernanda Montenegro",
"birth_day": null
},
{
"id": "efb43f33-8ab5-4935-81c9-0fbd4a1e89fc",
"full_name": "Tamara Taxman",
"birth_day": null
},
{
"id": "490d0e55-6fd9-4281-80fb-be4f423d2c59",
"full_name": "Jos\u00e9 Dumont",
"birth_day": null
}
],
"genres": [
{
"id": "43f4c970-e6e3-4511-9222-91dae67ad4bb",
"name": "Drama",
"description": null
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment