Vespa · Example Payload

Vespa Ai Document Put Example

AISearchVector DatabaseBig DataMachine LearningSemantic SearchRetrieval Augmented GenerationOpen SourceTensorRecommendations

Vespa Ai Document Put Example is an example object payload from Vespa, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://example.vespa-cloud.com/document/v1/articles/article/docid/42",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "fields": {
        "title": "An Introduction to Vector Databases",
        "summary": "Vector databases store embeddings and support nearest-neighbor search.",
        "url": "https://example.com/intro-to-vector-databases",
        "embedding": {
          "values": [0.13, 0.55, -0.21, 0.04]
        }
      }
    }
  },
  "response": {
    "pathId": "/document/v1/articles/article/docid/42",
    "id": "id:articles:article::42"
  }
}