# Annotation

Means of applying labels to already-known structures, such as graphs, hierarchies, and categorizations.

# Sparse

Perform sparse label annotation given an existing structure graph. I.e., expand a limited/sparse set of labels, given a known data structure, to obtain labels for elements of the entire structure.

# Endpoint

POST /insight/annotation/sparse

# Parameters

Name Type Description Required
labels_path string GCS bucket path for set of sparse labels ✔️
structure_path string GCS bucket path for previously-inferred graph structure ✔️

# Response

Status: 200

{
  "task_identifier": "EFTGHDFER"
}

curl -X POST https://api.rvrnc.io/insight/annotation/sparse \
  --data '{
  "labels_path": "gs://user/labels.csv",
  "structure_path": "gs://user/structure.csv"
}'