Data Entry

April 30, 2020 ยท View on GitHub

The data_entry interface allows you to collect data using a form. It's ideal for many data entry, classification or research purposes.

Schema

{
  "interface": {
    "type": "data_entry",
    "description"?: MarkdownDescription,
    "surveyjs": SurveyJSObject
  },
  "samples": [
    // These are all different types of task data that are acceptable
    { pdfUrl: "https://..." },
    { markdown: "## Some Content" },
    { imageUrl: "https://..." },
    { url: "https://" },
    { surveyjs: SurveyJSObject, markdown: "..." },
    { preloadedAnnotation: { "FieldName": "..." } }
  ],
  "examples": [
    {
      pdfUrl: "https://...",
      annotation: { "FieldName": "..." }
    }
  ]
}

Annotation

The annotation of data entry tasks is given by SurveyJS. Check the "Test Survey" tab using the SurveyJS tool.