Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.02 KB

File metadata and controls

36 lines (27 loc) · 2.02 KB

RelationshipInput

Properties

Name Type Description Notes
id str https://www.w3.org/TR/json-ld/#node-identifiers
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 []]
http___www_w3_org_2004_02_skos_coreexact_match List[Node] https://www.w3.org/TR/skos-primer/#secassociative [optional] [default to []]
http___www_w3_org_2004_02_skos_coreclose_match List[Node] https://www.w3.org/TR/skos-primer/#secassociative [optional] [default to []]
http___www_w3_org_2004_02_skos_corebroad_match List[Node] https://www.w3.org/TR/skos-primer/#secassociative [optional] [default to []]
http___www_w3_org_2004_02_skos_corenarrow_match List[Node] https://www.w3.org/TR/skos-primer/#secassociative [optional] [default to []]
http___www_w3_org_2004_02_skos_corerelated_match List[Node] https://www.w3.org/TR/skos-primer/#secassociative [optional] [default to []]

Example

from pyst_client.models.relationship_input import RelationshipInput

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

# convert the object into a dict
relationship_input_dict = relationship_input_instance.to_dict()
# create an instance of RelationshipInput from a dict
relationship_input_from_dict = RelationshipInput.from_dict(relationship_input_dict)

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