Validation class for SKOS Concept Schemes. Checks that required fields are included and have correct type.
from pyst_client.models.concept_scheme_input import ConceptSchemeInput
# TODO update the JSON string below
json = "{}"
# create an instance of ConceptSchemeInput from a JSON string
concept_scheme_input_instance = ConceptSchemeInput.from_json(json)
# print the JSON string representation of the object
print(ConceptSchemeInput.to_json())
# convert the object into a dict
concept_scheme_input_dict = concept_scheme_input_instance.to_dict()
# create an instance of ConceptSchemeInput from a dict
concept_scheme_input_from_dict = ConceptSchemeInput.from_dict(concept_scheme_input_dict)