PatchedRegulationRequest

Properties

Name Type Description Notes
name str The name of the regulation. [optional]
acronym str A shortened representation of the name. [optional]
category str The subject of the regulation. * `privacy` - Privacy * `finance` - Finance * `education` - Education * `medical` - Medical * `corporate` - Corporate * `security` - Security * `government` - Government * `other` - Other [optional]
jurisdiction str The territory over which the regulation applies. [optional]
description str Information about the regulation's purpose. [optional]
reference str An external URL for more information. [optional]

Example

from defectdojo_api_generated.models.patched_regulation_request import PatchedRegulationRequest

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

# convert the object into a dict
patched_regulation_request_dict = patched_regulation_request_instance.to_dict()
# create an instance of PatchedRegulationRequest from a dict
patched_regulation_request_from_dict = PatchedRegulationRequest.from_dict(patched_regulation_request_dict)

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