Classes

class lccs.classes.ClassificationSystemClass(data: dict, validate: bool = False)

Class representing a classification system.

__init__(data: dict, validate: bool = False) None

Initialize instance with dictionary data.

Parameters:
  • data – Dictionary containing class metadata.

  • validate – Whether to validate the data using jsonschema. Default is False.

property id: str

Return the class ID.

property name: str

Return the class name.

property title: str

Return the class title.

property description: str | None

Return the class description.

property color: str | None

Return the class color.

property code: str

Return the class code.

Return the class links.

property class_parent_id: str | None

Return the parent class ID.

property class_parent_name: str | None

Return the parent class name.