Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.32 KB

data_entry.md

File metadata and controls

38 lines (32 loc) · 1.32 KB

Data Entry

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.