# Elastic Mapping Question for Nested List of Objects

**URL:** https://discuss.elastic.co/t/elastic-mapping-question-for-nested-list-of-objects/248397
**Category:** Elasticsearch
**Created:** [September 12, 2020, 1:16am UTC](https://discuss.elastic.co/t/elastic-mapping-question-for-nested-list-of-objects/248397 "2020-09-12T01:16:48Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![vastevenson](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/vastevenson/32/75462_2.png) [@vastevenson](https://discuss.elastic.co/u/vastevenson)
#### Post date: [September 12, 2020, 1:16am UTC](https://discuss.elastic.co/t/elastic-mapping-question-for-nested-list-of-objects/248397/1 "2020-09-12T01:16:48Z")

</div>

Hi,

I am trying to upload data to an Elastic index. The each document can have many authors associated with it. How should I structure the mapping for this index so that authors will contain a list of first and last names?

Pseudo code:

```auto
    "authors_list" : {
        [
            "first_name": {
                "type" : "keyword"
            },
            "last_name": {
                "type" : "keyword"
            },
            "position": {
                "type" : "keyword"
            },
            "organization": {
                "type" : "keyword"
            }
        ]
      }

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [October 10, 2020, 1:16am UTC](https://discuss.elastic.co/t/elastic-mapping-question-for-nested-list-of-objects/248397/2 "2020-10-10T01:16:51Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
