Name | Type | Description | Notes |
---|---|---|---|
category | str | [optional] | |
csaf_version | str | [optional] | |
distribution | object | [optional] | |
lang | str | [optional] | |
notes | List[AdvisoryCSAFNote] | used by ncsc | [optional] |
publisher | AdvisoryPublisher | [optional] | |
references | List[AdvisoryCSAFReference] | [optional] | |
title | str | Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and criticality with which the one or more vulnerabilities reported should be addressed. | [optional] |
tracking | AdvisoryTracking | [optional] |
from vulncheck_sdk.models.advisory_document_metadata import AdvisoryDocumentMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryDocumentMetadata from a JSON string
advisory_document_metadata_instance = AdvisoryDocumentMetadata.from_json(json)
# print the JSON string representation of the object
print(AdvisoryDocumentMetadata.to_json())
# convert the object into a dict
advisory_document_metadata_dict = advisory_document_metadata_instance.to_dict()
# create an instance of AdvisoryDocumentMetadata from a dict
advisory_document_metadata_from_dict = AdvisoryDocumentMetadata.from_dict(advisory_document_metadata_dict)