Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.67 KB

File metadata and controls

41 lines (32 loc) · 2.67 KB

CorrespondenceInput

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___purl_org_dc_terms_created List[datetime] https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/created
http___purl_org_dc_terms_creator List[Node] https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/elements/1.1/creator
http___www_w3_org_2002_07_owlversion_info List[VersionString] https://www.w3.org/TR/owl-ref/#versionInfo-def
http___www_w3_org_2004_02_skos_coredefinition List[MultilingualString] https://www.w3.org/TR/skos-primer/#secdocumentation [optional] [default to []]
http___rdf_vocabulary_ddialliance_org_xkoscompares List[Node] https://rdf-vocabulary.ddialliance.org/xkos.html#correspondences

Example

from pyst_client.models.correspondence_input import CorrespondenceInput

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

# convert the object into a dict
correspondence_input_dict = correspondence_input_instance.to_dict()
# create an instance of CorrespondenceInput from a dict
correspondence_input_from_dict = CorrespondenceInput.from_dict(correspondence_input_dict)

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