Schema API
Schema API shows the index schema that the server applied.
Request
GET /v1/schema
Examples
To show the index schema:
$ curl -X POST 'http://localhost:8000/v1/schema' | jq .
You'll see the result in JSON format. The result of the above command is:
[
{
"name": "_id",
"type": "text",
"options": {
"indexing": {
"record": "basic",
"tokenizer": "raw"
},
"stored": true
}
},
{
"name": "url",
"type": "text",
"options": {
"indexing": {
"record": "freq",
"tokenizer": "default"
},
"stored": true
}
},
{
"name": "name",
"type": "text",
"options": {
"indexing": {
"record": "position",
"tokenizer": "en_stem"
},
"stored": true
}
},
{
"name": "description",
"type": "text",
"options": {
"indexing": {
"record": "position",
"tokenizer": "en_stem"
},
"stored": true
}
},
{
"name": "popularity",
"type": "u64",
"options": {
"indexed": true,
"fast": "single",
"stored": true
}
},
{
"name": "category",
"type": "hierarchical_facet"
},
{
"name": "timestamp",
"type": "date",
"options": {
"indexed": true,
"fast": "single",
"stored": true
}
}
]