cellannotation / cell-annotation-schema

General, open-standard schema for cell annotations
9 stars 1 forks source link

`labelsets` should be required. #56

Closed hkir-dev closed 7 months ago

hkir-dev commented 8 months ago

Only author_name and annotations are required:

"required": [
    "author_name",
    "annotations"
  ],

However, labelset is required field of the Annotation. Defining labelsets as required can be better for validation.

"required": [
        "labelset",
        "cell_label"
      ],