Create an Index
Endpoint
POST https://api-indexly.ripplefy.net/index
Payload
Parameter | Type | Description |
---|---|---|
index | string | Name of the index to be created. |
schema | object | JSON Schema describing the document structure. |
Example
curl --location 'https://api-indexly.ripplefy.net/index' \
--header 'Content-Type: application/json' \
--data '{
"index": "index-name",
"schema": {
"ID": {"type": "string"},
"Name": {"type": "string"},
"Description": {"type": "string"},
...
}
}'