{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.humancellatlas.org/module/process/sequencing/1.0.6/plate_based_sequencing",
  "description": "Information specific to plate-based sequencing experiments.",
  "additionalProperties": false,
  "required": [
    "plate_id"
  ],
  "title": "Plate-based sequencing",
  "name": "plate_based_sequencing",
  "type": "object",
  "properties": {
    "describedBy": {
      "description": "The URL reference to the schema.",
      "type": "string",
      "pattern": "^(http|https)://schema.(.*?)humancellatlas.org/module/process/sequencing/(([0-9]{1,}.[0-9]{1,}.[0-9]{1,})|([a-zA-Z]*?))/plate_based_sequencing"
    },
    "schema_version": {
      "description": "The version number of the schema in major.minor.patch format.",
      "type": "string",
      "pattern": "^[0-9]{1,}.[0-9]{1,}.[0-9]{1,}$",
      "example": "4.6.1"
    },
    "plate_id": {
      "description": "An ID for the plate that the well is located on.",
      "type": "string",
      "user_friendly": "Plate ID",
      "example": "2217"
    },
    "well_id": {
      "description": "An ID or name for the well.",
      "type": "string",
      "user_friendly": "Well ID",
      "example": "A1",
      "guidelines": "Well ID should be unique for the plate."
    },
    "cell_quality": {
      "description": "Quality of well if imaged before sequencing.",
      "type": "string",
      "enum": [
        "OK",
        "control, 2-cell well",
        "control, empty well",
        "low quality cell"
      ],
      "user_friendly": "Well quality",
      "example": "Should be one of: 'OK', 'control, 2-cell well', 'control, empty well', or 'low quality cell'."
    }
  }
}
