bio.cuanto.surveyProtocol

cuanto.bio

Documentation

Defines the contents of a Survey, including what participants should look for and what fields they must fill out.

main record

Defines the contents of a Survey, including what participants should look for and what fields they must fill out.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when this protocol was originally created.

description string Required

Narrative description of the protocol (sensu DCMI dc:description).

locationOptions array of ref org.atgeo.place Optional

Controlled list of locations where surveys may occur. When present, surveyors must choose from this list rather than entering a free-form location name.

requiredFields array of string Optional

List of fields required to complete the survey.

title string Required

Name of the protocol (sensu DCMI dc:title).

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "description",
      "createdAt"
    ],
    "properties": {
      "title": {
        "type": "string",
        "description": "Name of the protocol (sensu DCMI dc:title)."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when this protocol was originally created."
      },
      "description": {
        "type": "string",
        "description": "Narrative description of the protocol (sensu DCMI dc:description)."
      },
      "requiredFields": {
        "type": "array",
        "items": {
          "type": "string",
          "knownValues": [
            "eventDate",
            "eventDuration",
            "surveyorCount"
          ]
        },
        "description": "List of fields required to complete the survey."
      },
      "locationOptions": {
        "type": "array",
        "items": {
          "ref": "org.atgeo.place",
          "type": "ref"
        },
        "description": "Controlled list of locations where surveys may occur. When present, surveyors must choose from this list rather than entering a free-form location name."
      }
    }
  },
  "description": "Defines the contents of a Survey, including what participants should look for and what fields they must fill out."
}

Lexicon Garden

@