Components that are excluded provide the ability to document component usage for test and other non-runtime purposes. Excluded components are not reachable within a call graph at runtime.
from enum value: SCOPE_EXCLUDED = 3;
The component is optional at runtime. Optional components are components that are not capable of being called due to them not being installed or otherwise accessible by any means. Components that are installed but, due to configuration or other restrictions, are prohibited from being called must be scoped as 'required'.
from enum value: SCOPE_OPTIONAL = 2;
The component is required for runtime
from enum value: SCOPE_REQUIRED = 1;
Default
from enum value: SCOPE_UNSPECIFIED = 0;
Generated
from enum cyclonedx.v1_6.Scope