spdx_tools.spdx.jsonschema.package_verification_code_properties

 1# SPDX-FileCopyrightText: 2022 spdx contributors
 2#
 3# SPDX-License-Identifier: Apache-2.0
 4from enum import auto
 5
 6from spdx_tools.spdx.jsonschema.json_property import JsonProperty
 7
 8
 9class PackageVerificationCodeProperty(JsonProperty):
10    PACKAGE_VERIFICATION_CODE_EXCLUDED_FILES = auto()
11    PACKAGE_VERIFICATION_CODE_VALUE = auto()
class PackageVerificationCodeProperty(spdx_tools.spdx.jsonschema.json_property.JsonProperty):
10class PackageVerificationCodeProperty(JsonProperty):
11    PACKAGE_VERIFICATION_CODE_EXCLUDED_FILES = auto()
12    PACKAGE_VERIFICATION_CODE_VALUE = auto()

Parent class for all json property classes. Not meant to be instantiated directly, only to have a common parent type that can be used in type hints. In general, all the child enums list the properties of the corresponding objects from the json schema.

PACKAGE_VERIFICATION_CODE_EXCLUDED_FILES = <PackageVerificationCodeProperty.PACKAGE_VERIFICATION_CODE_EXCLUDED_FILES: 1>
Inherited Members
enum.Enum
name
value