Regulation

Properties

Name Type Description Notes
id int [optional] [readonly]
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.regulation import Regulation

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

# convert the object into a dict
regulation_dict = regulation_instance.to_dict()
# create an instance of Regulation from a dict
regulation_from_dict = Regulation.from_dict(regulation_dict)

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