Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.91 KB

File metadata and controls

43 lines (34 loc) · 2.91 KB

ConceptCreate

Properties

Name Type Description Notes
id str https://www.w3.org/TR/json-ld/#node-identifiers
type List[str] https://www.w3.org/TR/json-ld/#specifying-the-type
http___www_w3_org_2004_02_skos_corepref_label List[MultilingualString] https://www.w3.org/TR/skos-primer/#secpref
http___purl_org_ontology_bibo_status List[Status] https://github.com/dcmi/bibo/blob/main/rdf/bibo.ttl#L391
http___www_w3_org_2004_02_skos_corenotation List[Notation] https://www.w3.org/TR/skos-primer/#secnotations [optional] [default to []]
http___www_w3_org_2004_02_skos_corechange_note List[NonLiteralNote] [optional] [default to []]
http___www_w3_org_2004_02_skos_corehistory_note List[NonLiteralNote] [optional] [default to []]
http___www_w3_org_2004_02_skos_coreeditorial_note List[NonLiteralNote] [optional] [default to []]
http___www_w3_org_2004_02_skos_corein_scheme List[Node] https://www.w3.org/TR/skos-primer/#secscheme
http___www_w3_org_2004_02_skos_corealt_label List[MultilingualString] https://www.w3.org/TR/skos-primer/#secalt [optional] [default to []]
http___www_w3_org_2004_02_skos_corehidden_label List[MultilingualString] https://www.w3.org/TR/skos-primer/#sechidden [optional] [default to []]
http___www_w3_org_2004_02_skos_coredefinition List[MultilingualString] https://www.w3.org/TR/skos-primer/#secdocumentation [optional] [default to []]
http___www_w3_org_2004_02_skos_coretop_concept_of List[Node] https://www.w3.org/TR/skos-primer/#secscheme [optional] [default to []]
http___www_w3_org_2004_02_skos_corebroader List[Node] https://www.w3.org/TR/skos-primer/#sechierarchy [optional] [default to []]
http___www_w3_org_2004_02_skos_corenarrower List[Node] https://www.w3.org/TR/skos-primer/#sechierarchy [optional] [default to []]

Example

from pyst_client.models.concept_create import ConceptCreate

# TODO update the JSON string below
json = "{}"
# create an instance of ConceptCreate from a JSON string
concept_create_instance = ConceptCreate.from_json(json)
# print the JSON string representation of the object
print(ConceptCreate.to_json())

# convert the object into a dict
concept_create_dict = concept_create_instance.to_dict()
# create an instance of ConceptCreate from a dict
concept_create_from_dict = ConceptCreate.from_dict(concept_create_dict)

[Back to Model list] [Back to API list] [Back to README]