Doc_Kaos
(Ken R)
June 2, 2022, 3:02pm
#1
What is is correct term for fields like author
in the below:
PUT /publications
{
"mappings": {
"properties": {
"id": { "type": "text" },
"title": { "type": "text" },
"abstract": { "type": "text" },
"author": {
"properties": {
"id": { "type": "text" },
"name": { "type": "text" }
}
}
}
}
}
warkolm
(Mark Walkom)
June 2, 2022, 11:12pm
#2
You mean author.id
? That'd be a nested field.
Doc_Kaos
(Ken R)
June 3, 2022, 1:16pm
#3
But what would you call author
? A placeholder? field header? folder?
It is a field mapped as an object as it contains other fields.
1 Like
system
(system)
Closed
July 4, 2022, 5:39am
#6
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.