├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yaml └── workflows │ ├── test_context.py │ └── validate-pr.yml ├── .gitignore ├── CHANGELOG.md ├── CLA.md ├── Contributing.md ├── Governance.md ├── License.md ├── README.md ├── docs ├── format.md ├── glossary.md ├── model.drawio └── translation.md ├── images ├── model-AI.png ├── model-Build.png ├── model-Core.png ├── model-Dataset.png ├── model-Extension.png ├── model-Hardware.png ├── model-Licensing.png ├── model-Security.png ├── model-Service.png ├── model-Software.png └── model-SupplyChain.png ├── model ├── AI │ ├── AI.md │ ├── Classes │ │ ├── AIPackage.md │ │ ├── EnergyConsumption.md │ │ └── EnergyConsumptionDescription.md │ ├── Properties │ │ ├── autonomyType.md │ │ ├── domain.md │ │ ├── energyConsumption.md │ │ ├── energyQuantity.md │ │ ├── energyUnit.md │ │ ├── finetuningEnergyConsumption.md │ │ ├── hyperparameter.md │ │ ├── inferenceEnergyConsumption.md │ │ ├── informationAboutApplication.md │ │ ├── informationAboutTraining.md │ │ ├── limitation.md │ │ ├── metric.md │ │ ├── metricDecisionThreshold.md │ │ ├── modelDataPreprocessing.md │ │ ├── modelExplainability.md │ │ ├── safetyRiskAssessment.md │ │ ├── standardCompliance.md │ │ ├── trainingEnergyConsumption.md │ │ ├── typeOfModel.md │ │ └── useSensitivePersonalInformation.md │ └── Vocabularies │ │ ├── EnergyUnitType.md │ │ └── SafetyRiskAssessmentType.md ├── Build │ ├── Build.md │ ├── Classes │ │ └── Build.md │ └── Properties │ │ ├── buildEndTime.md │ │ ├── buildId.md │ │ ├── buildStartTime.md │ │ ├── buildType.md │ │ ├── configSourceDigest.md │ │ ├── configSourceEntrypoint.md │ │ ├── configSourceUri.md │ │ ├── environment.md │ │ └── parameter.md ├── Core │ ├── Classes │ │ ├── Action.md │ │ ├── Agent.md │ │ ├── Annotation.md │ │ ├── Artifact.md │ │ ├── Bom.md │ │ ├── Bundle.md │ │ ├── ContactPointRelationship.md │ │ ├── CreationInfo.md │ │ ├── DefinedProcess.md │ │ ├── DefinedType.md │ │ ├── DictionaryEntry.md │ │ ├── Element.md │ │ ├── ElementCollection.md │ │ ├── ExternalIdentifier.md │ │ ├── ExternalMap.md │ │ ├── ExternalRef.md │ │ ├── Hash.md │ │ ├── IndividualElement.md │ │ ├── IntegrityMethod.md │ │ ├── LifecycleScopedRelationship.md │ │ ├── Location.md │ │ ├── MeasureOfLength.md │ │ ├── MeasureOfMass.md │ │ ├── NamespaceMap.md │ │ ├── Organization.md │ │ ├── PackageVerificationCode.md │ │ ├── Person.md │ │ ├── PhysicalLocation.md │ │ ├── PositiveIntegerRange.md │ │ ├── Regulation.md │ │ ├── Relationship.md │ │ ├── SoftwareAgent.md │ │ ├── SpdxDocument.md │ │ ├── Specification.md │ │ ├── SupportRelationship.md │ │ ├── Tool.md │ │ └── UnitOfMeasure.md │ ├── Core.md │ ├── Datatypes │ │ ├── CountryCodeAlpha3.md │ │ ├── DateTime.md │ │ ├── LanguageTag.md │ │ ├── MediaType.md │ │ └── SemVer.md │ ├── Individuals │ │ ├── NoAssertionElement.md │ │ ├── NoneElement.md │ │ └── SpdxOrganization.md │ ├── Properties │ │ ├── actionEndTime.md │ │ ├── actionLocation.md │ │ ├── actionStartTime.md │ │ ├── additionalInformation.md │ │ ├── algorithm.md │ │ ├── annotationType.md │ │ ├── beginIntegerRange.md │ │ ├── builtTime.md │ │ ├── city.md │ │ ├── comment.md │ │ ├── completeness.md │ │ ├── contactType.md │ │ ├── contentType.md │ │ ├── context.md │ │ ├── country.md │ │ ├── countyCode.md │ │ ├── created.md │ │ ├── createdBy.md │ │ ├── createdUsing.md │ │ ├── creationInfo.md │ │ ├── dataLicense.md │ │ ├── definingArtifact.md │ │ ├── definitionSource.md │ │ ├── description.md │ │ ├── element.md │ │ ├── endIntegerRange.md │ │ ├── endTime.md │ │ ├── extension.md │ │ ├── externalIdentifier.md │ │ ├── externalIdentifierType.md │ │ ├── externalRef.md │ │ ├── externalRefType.md │ │ ├── externalSpdxId.md │ │ ├── from.md │ │ ├── geographicPointLocation.md │ │ ├── hashValue.md │ │ ├── headquartersLocation.md │ │ ├── identifier.md │ │ ├── identifierLocator.md │ │ ├── import.md │ │ ├── inLanguage.md │ │ ├── intendedUse.md │ │ ├── isoAutomationLevel.md │ │ ├── issuingAuthority.md │ │ ├── key.md │ │ ├── locationHint.md │ │ ├── locationTime.md │ │ ├── locator.md │ │ ├── name.md │ │ ├── namespace.md │ │ ├── namespaceMap.md │ │ ├── originatedBy.md │ │ ├── packageVerificationCodeExcludedFile.md │ │ ├── postOfficeBoxNumber.md │ │ ├── postalCode.md │ │ ├── postalName.md │ │ ├── prefix.md │ │ ├── processRationale.md │ │ ├── processReadiness.md │ │ ├── processVersion.md │ │ ├── profileConformance.md │ │ ├── provinceStateCode.md │ │ ├── quantity.md │ │ ├── relationshipType.md │ │ ├── releaseTime.md │ │ ├── rootElement.md │ │ ├── scope.md │ │ ├── spdxId.md │ │ ├── specType.md │ │ ├── specVersion.md │ │ ├── standardName.md │ │ ├── startTime.md │ │ ├── statement.md │ │ ├── streetAddress.md │ │ ├── subject.md │ │ ├── summary.md │ │ ├── suppliedBy.md │ │ ├── supportLevel.md │ │ ├── to.md │ │ ├── typeFromSource.md │ │ ├── unitQUDT.md │ │ ├── validUntilTime.md │ │ ├── value.md │ │ └── verifiedUsing.md │ └── Vocabularies │ │ ├── AnnotationType.md │ │ ├── ContactPointRelationshipType.md │ │ ├── ExternalIdentifierType.md │ │ ├── ExternalRefType.md │ │ ├── HashAlgorithm.md │ │ ├── IsoAutomationLevel.md │ │ ├── LifecycleScopeType.md │ │ ├── PresenceType.md │ │ ├── ProcessReadinessType.md │ │ ├── ProfileIdentifierType.md │ │ ├── RelationshipCompleteness.md │ │ ├── RelationshipType.md │ │ ├── SpecificationType.md │ │ └── SupportType.md ├── Dataset │ ├── Classes │ │ └── DatasetPackage.md │ ├── Dataset.md │ ├── Properties │ │ ├── anonymizationMethodUsed.md │ │ ├── confidentialityLevel.md │ │ ├── dataCollectionProcess.md │ │ ├── dataPreprocessing.md │ │ ├── datasetAvailability.md │ │ ├── datasetNoise.md │ │ ├── datasetSize.md │ │ ├── datasetType.md │ │ ├── datasetUpdateMechanism.md │ │ ├── hasSensitivePersonalInformation.md │ │ ├── intendedUse.md │ │ ├── knownBias.md │ │ └── sensor.md │ └── Vocabularies │ │ ├── ConfidentialityLevelType.md │ │ ├── DatasetAvailabilityType.md │ │ └── DatasetType.md ├── ExpandedLicensing │ ├── Classes │ │ ├── ConjunctiveLicenseSet.md │ │ ├── CustomLicense.md │ │ ├── CustomLicenseAddition.md │ │ ├── DisjunctiveLicenseSet.md │ │ ├── ExtendableLicense.md │ │ ├── IndividualLicensingInfo.md │ │ ├── License.md │ │ ├── LicenseAddition.md │ │ ├── ListedLicense.md │ │ ├── ListedLicenseException.md │ │ ├── OrLaterOperator.md │ │ └── WithAdditionOperator.md │ ├── ExpandedLicensing.md │ ├── Individuals │ │ ├── NoAssertionLicense.md │ │ └── NoneLicense.md │ └── Properties │ │ ├── additionText.md │ │ ├── deprecatedVersion.md │ │ ├── isDeprecatedAdditionId.md │ │ ├── isDeprecatedLicenseId.md │ │ ├── isFsfLibre.md │ │ ├── isOsiApproved.md │ │ ├── licenseXml.md │ │ ├── listVersionAdded.md │ │ ├── member.md │ │ ├── obsoletedBy.md │ │ ├── seeAlso.md │ │ ├── standardAdditionTemplate.md │ │ ├── standardLicenseHeader.md │ │ ├── standardLicenseTemplate.md │ │ ├── subjectAddition.md │ │ ├── subjectExtendableLicense.md │ │ └── subjectLicense.md ├── Extension │ ├── Classes │ │ ├── CdxPropertiesExtension.md │ │ ├── CdxPropertyEntry.md │ │ └── Extension.md │ ├── Extension.md │ └── Properties │ │ ├── cdxPropName.md │ │ ├── cdxPropValue.md │ │ └── cdxProperty.md ├── Hardware │ ├── Classes │ │ ├── BulkHardware.md │ │ ├── Dimensions.md │ │ ├── Hardware.md │ │ ├── PhysicalHardware.md │ │ ├── ProductSpecification.md │ │ └── VirtualHardware.md │ ├── Hardware.md │ ├── Properties │ │ ├── additionalInformation.md │ │ ├── additionalInformationSpecification.md │ │ ├── batchNumber.md │ │ ├── bulkQuantity.md │ │ ├── category.md │ │ ├── centerOfMass.md │ │ ├── dimensions.md │ │ ├── hardwareVersion.md │ │ ├── hazard.md │ │ ├── itemVersion.md │ │ ├── mass.md │ │ ├── massOfHardware.md │ │ ├── partNumber.md │ │ ├── productAgent.md │ │ ├── releaseDate.md │ │ ├── serialNumber.md │ │ ├── virtualHardwareModel.md │ │ ├── xAxisLength.md │ │ ├── yAxisLength.md │ │ └── zAxisLength.md │ └── Vocabularies │ │ └── VirtualHardwareModelType.md ├── Licensing │ └── Licensing.md ├── Lite │ └── Lite.md ├── Security │ ├── Classes │ │ ├── CvssV2VulnAssessmentRelationship.md │ │ ├── CvssV3VulnAssessmentRelationship.md │ │ ├── CvssV4VulnAssessmentRelationship.md │ │ ├── EpssVulnAssessmentRelationship.md │ │ ├── ExploitCatalogVulnAssessmentRelationship.md │ │ ├── SsvcVulnAssessmentRelationship.md │ │ ├── VexAffectedVulnAssessmentRelationship.md │ │ ├── VexFixedVulnAssessmentRelationship.md │ │ ├── VexNotAffectedVulnAssessmentRelationship.md │ │ ├── VexUnderInvestigationVulnAssessmentRelationship.md │ │ ├── VexVulnAssessmentRelationship.md │ │ ├── VulnAssessmentRelationship.md │ │ └── Vulnerability.md │ ├── Properties │ │ ├── actionStatement.md │ │ ├── actionStatementTime.md │ │ ├── assessedElement.md │ │ ├── catalogType.md │ │ ├── decisionType.md │ │ ├── exploited.md │ │ ├── impactStatement.md │ │ ├── impactStatementTime.md │ │ ├── justificationType.md │ │ ├── locator.md │ │ ├── modifiedTime.md │ │ ├── percentile.md │ │ ├── probability.md │ │ ├── publishedTime.md │ │ ├── score.md │ │ ├── severity.md │ │ ├── statusNotes.md │ │ ├── vectorString.md │ │ ├── vexVersion.md │ │ └── withdrawnTime.md │ ├── Security.md │ └── Vocabularies │ │ ├── CvssSeverityType.md │ │ ├── ExploitCatalogType.md │ │ ├── SsvcDecisionType.md │ │ └── VexJustificationType.md ├── Service │ ├── Classes │ │ └── SoftwareService.md │ ├── Properties │ │ ├── provider.md │ │ ├── serverAuthenticationProtocol.md │ │ └── serviceHostingCountry.md │ ├── Service.md │ └── Vocabularies │ │ └── AuthenticationProtocolType.md ├── SimpleLicensing │ ├── Classes │ │ ├── AnyLicenseInfo.md │ │ ├── LicenseExpression.md │ │ └── SimpleLicensingText.md │ ├── Properties │ │ ├── customIdToUri.md │ │ ├── licenseExpression.md │ │ ├── licenseListVersion.md │ │ └── licenseText.md │ └── SimpleLicensing.md ├── Software │ ├── Classes │ │ ├── ContentIdentifier.md │ │ ├── File.md │ │ ├── Package.md │ │ ├── Sbom.md │ │ ├── Snippet.md │ │ └── SoftwareArtifact.md │ ├── Properties │ │ ├── additionalPurpose.md │ │ ├── artifactSize.md │ │ ├── attributionText.md │ │ ├── byteRange.md │ │ ├── contentIdentifier.md │ │ ├── contentIdentifierType.md │ │ ├── contentIdentifierValue.md │ │ ├── copyrightText.md │ │ ├── downloadLocation.md │ │ ├── fileKind.md │ │ ├── homePage.md │ │ ├── lineRange.md │ │ ├── packageUrl.md │ │ ├── packageVersion.md │ │ ├── primaryPurpose.md │ │ ├── sbomType.md │ │ ├── snippetFromFile.md │ │ └── sourceInfo.md │ ├── Software.md │ └── Vocabularies │ │ ├── ContentIdentifierType.md │ │ ├── FileKindType.md │ │ ├── SbomType.md │ │ └── SoftwarePurpose.md └── SupplyChain │ ├── Classes │ ├── AssemblyAction.md │ ├── AssemblyProcess.md │ ├── BoundaryCrossingAction.md │ ├── BoundaryDefinitionAction.md │ ├── BoundaryDefinitionProcess.md │ ├── ChangeAction.md │ ├── ChangeProcess.md │ ├── CreateAction.md │ ├── CreateProcess.md │ ├── DefinedStateProcess.md │ ├── DestroyAction.md │ ├── DestroyProcess.md │ ├── HarvestAction.md │ ├── HarvestProcess.md │ ├── InspectionAction.md │ ├── InspectionProcess.md │ ├── InstantiateVirtualHardwareProcess.md │ ├── ManufactureAction.md │ ├── ManufactureProcess.md │ ├── ModifyAction.md │ ├── ModifyProcess.md │ ├── OutOfSpecAction.md │ ├── PlanAction.md │ ├── PlanProcess.md │ ├── ReproduceAction.md │ ├── ReproduceProcess.md │ ├── ResolutionAction.md │ ├── ResponsibilityChangeAction.md │ ├── ResponsibilityChangeProcess.md │ ├── State.md │ ├── StateAction.md │ ├── StorageAction.md │ ├── StorageProcess.md │ ├── TestAction.md │ ├── TestProcess.md │ ├── TransportAction.md │ ├── TransportProcess.md │ ├── UseAction.md │ └── UseProcess.md │ ├── Properties │ ├── boundaryParameter.md │ ├── current.md │ ├── currentState.md │ ├── decisionProcess.md │ ├── destructionPerformedBy.md │ ├── dropoffLocation.md │ ├── forDropoffLocation.md │ ├── forPickupLocation.md │ ├── pickupLocation.md │ ├── plannedCurrent.md │ ├── plannedInspectionLocation.md │ ├── plannedPrevious.md │ ├── plannedProductofResponsibilityChange.md │ ├── plannedStorageLocation.md │ ├── plannedTransportRoutes.md │ ├── previous.md │ ├── responsibilityCategory.md │ ├── responsibilityChangedOn.md │ ├── transportRoute.md │ └── vaildState.md │ ├── SupplyChain.md │ └── Vocabularies │ └── ResponsibilityType.md ├── scope.md └── serialization ├── README.md ├── canonical.md ├── cbor.md ├── json.md ├── jsonld.md ├── jsonld ├── examples.md ├── examples │ ├── agent1.json │ ├── annotation1.json │ ├── converted_from_spdx_2.json │ ├── file1.json │ ├── org1.json │ ├── package1.json │ ├── person1.json │ ├── person2.json │ ├── person3.json │ ├── relationship1.json │ ├── sbom1.json │ ├── spdx_document1.json │ ├── spdx_document2.json │ ├── spdx_document3.json │ ├── spdx_document4.json │ ├── tool1.json │ └── two_sboms.json ├── validation-vscode-error.png ├── validation-vscode-suggestion.png ├── validation-vscode.png └── validation.md └── rdf.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/.github/workflows/test_context.py -------------------------------------------------------------------------------- /.github/workflows/validate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/.github/workflows/validate-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/CLA.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/Contributing.md -------------------------------------------------------------------------------- /Governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/Governance.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/README.md -------------------------------------------------------------------------------- /docs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/docs/format.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/model.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/docs/model.drawio -------------------------------------------------------------------------------- /docs/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/docs/translation.md -------------------------------------------------------------------------------- /images/model-AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-AI.png -------------------------------------------------------------------------------- /images/model-Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Build.png -------------------------------------------------------------------------------- /images/model-Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Core.png -------------------------------------------------------------------------------- /images/model-Dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Dataset.png -------------------------------------------------------------------------------- /images/model-Extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Extension.png -------------------------------------------------------------------------------- /images/model-Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Hardware.png -------------------------------------------------------------------------------- /images/model-Licensing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Licensing.png -------------------------------------------------------------------------------- /images/model-Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Security.png -------------------------------------------------------------------------------- /images/model-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Service.png -------------------------------------------------------------------------------- /images/model-Software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-Software.png -------------------------------------------------------------------------------- /images/model-SupplyChain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/images/model-SupplyChain.png -------------------------------------------------------------------------------- /model/AI/AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/AI.md -------------------------------------------------------------------------------- /model/AI/Classes/AIPackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Classes/AIPackage.md -------------------------------------------------------------------------------- /model/AI/Classes/EnergyConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Classes/EnergyConsumption.md -------------------------------------------------------------------------------- /model/AI/Classes/EnergyConsumptionDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Classes/EnergyConsumptionDescription.md -------------------------------------------------------------------------------- /model/AI/Properties/autonomyType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/autonomyType.md -------------------------------------------------------------------------------- /model/AI/Properties/domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/domain.md -------------------------------------------------------------------------------- /model/AI/Properties/energyConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/energyConsumption.md -------------------------------------------------------------------------------- /model/AI/Properties/energyQuantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/energyQuantity.md -------------------------------------------------------------------------------- /model/AI/Properties/energyUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/energyUnit.md -------------------------------------------------------------------------------- /model/AI/Properties/finetuningEnergyConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/finetuningEnergyConsumption.md -------------------------------------------------------------------------------- /model/AI/Properties/hyperparameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/hyperparameter.md -------------------------------------------------------------------------------- /model/AI/Properties/inferenceEnergyConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/inferenceEnergyConsumption.md -------------------------------------------------------------------------------- /model/AI/Properties/informationAboutApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/informationAboutApplication.md -------------------------------------------------------------------------------- /model/AI/Properties/informationAboutTraining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/informationAboutTraining.md -------------------------------------------------------------------------------- /model/AI/Properties/limitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/limitation.md -------------------------------------------------------------------------------- /model/AI/Properties/metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/metric.md -------------------------------------------------------------------------------- /model/AI/Properties/metricDecisionThreshold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/metricDecisionThreshold.md -------------------------------------------------------------------------------- /model/AI/Properties/modelDataPreprocessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/modelDataPreprocessing.md -------------------------------------------------------------------------------- /model/AI/Properties/modelExplainability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/modelExplainability.md -------------------------------------------------------------------------------- /model/AI/Properties/safetyRiskAssessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/safetyRiskAssessment.md -------------------------------------------------------------------------------- /model/AI/Properties/standardCompliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/standardCompliance.md -------------------------------------------------------------------------------- /model/AI/Properties/trainingEnergyConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/trainingEnergyConsumption.md -------------------------------------------------------------------------------- /model/AI/Properties/typeOfModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/typeOfModel.md -------------------------------------------------------------------------------- /model/AI/Properties/useSensitivePersonalInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Properties/useSensitivePersonalInformation.md -------------------------------------------------------------------------------- /model/AI/Vocabularies/EnergyUnitType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Vocabularies/EnergyUnitType.md -------------------------------------------------------------------------------- /model/AI/Vocabularies/SafetyRiskAssessmentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/AI/Vocabularies/SafetyRiskAssessmentType.md -------------------------------------------------------------------------------- /model/Build/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Build.md -------------------------------------------------------------------------------- /model/Build/Classes/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Classes/Build.md -------------------------------------------------------------------------------- /model/Build/Properties/buildEndTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/buildEndTime.md -------------------------------------------------------------------------------- /model/Build/Properties/buildId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/buildId.md -------------------------------------------------------------------------------- /model/Build/Properties/buildStartTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/buildStartTime.md -------------------------------------------------------------------------------- /model/Build/Properties/buildType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/buildType.md -------------------------------------------------------------------------------- /model/Build/Properties/configSourceDigest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/configSourceDigest.md -------------------------------------------------------------------------------- /model/Build/Properties/configSourceEntrypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/configSourceEntrypoint.md -------------------------------------------------------------------------------- /model/Build/Properties/configSourceUri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/configSourceUri.md -------------------------------------------------------------------------------- /model/Build/Properties/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/environment.md -------------------------------------------------------------------------------- /model/Build/Properties/parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Build/Properties/parameter.md -------------------------------------------------------------------------------- /model/Core/Classes/Action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Action.md -------------------------------------------------------------------------------- /model/Core/Classes/Agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Agent.md -------------------------------------------------------------------------------- /model/Core/Classes/Annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Annotation.md -------------------------------------------------------------------------------- /model/Core/Classes/Artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Artifact.md -------------------------------------------------------------------------------- /model/Core/Classes/Bom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Bom.md -------------------------------------------------------------------------------- /model/Core/Classes/Bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Bundle.md -------------------------------------------------------------------------------- /model/Core/Classes/ContactPointRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/ContactPointRelationship.md -------------------------------------------------------------------------------- /model/Core/Classes/CreationInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/CreationInfo.md -------------------------------------------------------------------------------- /model/Core/Classes/DefinedProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/DefinedProcess.md -------------------------------------------------------------------------------- /model/Core/Classes/DefinedType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/DefinedType.md -------------------------------------------------------------------------------- /model/Core/Classes/DictionaryEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/DictionaryEntry.md -------------------------------------------------------------------------------- /model/Core/Classes/Element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Element.md -------------------------------------------------------------------------------- /model/Core/Classes/ElementCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/ElementCollection.md -------------------------------------------------------------------------------- /model/Core/Classes/ExternalIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/ExternalIdentifier.md -------------------------------------------------------------------------------- /model/Core/Classes/ExternalMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/ExternalMap.md -------------------------------------------------------------------------------- /model/Core/Classes/ExternalRef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/ExternalRef.md -------------------------------------------------------------------------------- /model/Core/Classes/Hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Hash.md -------------------------------------------------------------------------------- /model/Core/Classes/IndividualElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/IndividualElement.md -------------------------------------------------------------------------------- /model/Core/Classes/IntegrityMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/IntegrityMethod.md -------------------------------------------------------------------------------- /model/Core/Classes/LifecycleScopedRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/LifecycleScopedRelationship.md -------------------------------------------------------------------------------- /model/Core/Classes/Location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Location.md -------------------------------------------------------------------------------- /model/Core/Classes/MeasureOfLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/MeasureOfLength.md -------------------------------------------------------------------------------- /model/Core/Classes/MeasureOfMass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/MeasureOfMass.md -------------------------------------------------------------------------------- /model/Core/Classes/NamespaceMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/NamespaceMap.md -------------------------------------------------------------------------------- /model/Core/Classes/Organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Organization.md -------------------------------------------------------------------------------- /model/Core/Classes/PackageVerificationCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/PackageVerificationCode.md -------------------------------------------------------------------------------- /model/Core/Classes/Person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Person.md -------------------------------------------------------------------------------- /model/Core/Classes/PhysicalLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/PhysicalLocation.md -------------------------------------------------------------------------------- /model/Core/Classes/PositiveIntegerRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/PositiveIntegerRange.md -------------------------------------------------------------------------------- /model/Core/Classes/Regulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Regulation.md -------------------------------------------------------------------------------- /model/Core/Classes/Relationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Relationship.md -------------------------------------------------------------------------------- /model/Core/Classes/SoftwareAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/SoftwareAgent.md -------------------------------------------------------------------------------- /model/Core/Classes/SpdxDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/SpdxDocument.md -------------------------------------------------------------------------------- /model/Core/Classes/Specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Specification.md -------------------------------------------------------------------------------- /model/Core/Classes/SupportRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/SupportRelationship.md -------------------------------------------------------------------------------- /model/Core/Classes/Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/Tool.md -------------------------------------------------------------------------------- /model/Core/Classes/UnitOfMeasure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Classes/UnitOfMeasure.md -------------------------------------------------------------------------------- /model/Core/Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Core.md -------------------------------------------------------------------------------- /model/Core/Datatypes/CountryCodeAlpha3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Datatypes/CountryCodeAlpha3.md -------------------------------------------------------------------------------- /model/Core/Datatypes/DateTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Datatypes/DateTime.md -------------------------------------------------------------------------------- /model/Core/Datatypes/LanguageTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Datatypes/LanguageTag.md -------------------------------------------------------------------------------- /model/Core/Datatypes/MediaType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Datatypes/MediaType.md -------------------------------------------------------------------------------- /model/Core/Datatypes/SemVer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Datatypes/SemVer.md -------------------------------------------------------------------------------- /model/Core/Individuals/NoAssertionElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Individuals/NoAssertionElement.md -------------------------------------------------------------------------------- /model/Core/Individuals/NoneElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Individuals/NoneElement.md -------------------------------------------------------------------------------- /model/Core/Individuals/SpdxOrganization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Individuals/SpdxOrganization.md -------------------------------------------------------------------------------- /model/Core/Properties/actionEndTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/actionEndTime.md -------------------------------------------------------------------------------- /model/Core/Properties/actionLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/actionLocation.md -------------------------------------------------------------------------------- /model/Core/Properties/actionStartTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/actionStartTime.md -------------------------------------------------------------------------------- /model/Core/Properties/additionalInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/additionalInformation.md -------------------------------------------------------------------------------- /model/Core/Properties/algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/algorithm.md -------------------------------------------------------------------------------- /model/Core/Properties/annotationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/annotationType.md -------------------------------------------------------------------------------- /model/Core/Properties/beginIntegerRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/beginIntegerRange.md -------------------------------------------------------------------------------- /model/Core/Properties/builtTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/builtTime.md -------------------------------------------------------------------------------- /model/Core/Properties/city.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/city.md -------------------------------------------------------------------------------- /model/Core/Properties/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/comment.md -------------------------------------------------------------------------------- /model/Core/Properties/completeness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/completeness.md -------------------------------------------------------------------------------- /model/Core/Properties/contactType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/contactType.md -------------------------------------------------------------------------------- /model/Core/Properties/contentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/contentType.md -------------------------------------------------------------------------------- /model/Core/Properties/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/context.md -------------------------------------------------------------------------------- /model/Core/Properties/country.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/country.md -------------------------------------------------------------------------------- /model/Core/Properties/countyCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/countyCode.md -------------------------------------------------------------------------------- /model/Core/Properties/created.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/created.md -------------------------------------------------------------------------------- /model/Core/Properties/createdBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/createdBy.md -------------------------------------------------------------------------------- /model/Core/Properties/createdUsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/createdUsing.md -------------------------------------------------------------------------------- /model/Core/Properties/creationInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/creationInfo.md -------------------------------------------------------------------------------- /model/Core/Properties/dataLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/dataLicense.md -------------------------------------------------------------------------------- /model/Core/Properties/definingArtifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/definingArtifact.md -------------------------------------------------------------------------------- /model/Core/Properties/definitionSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/definitionSource.md -------------------------------------------------------------------------------- /model/Core/Properties/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/description.md -------------------------------------------------------------------------------- /model/Core/Properties/element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/element.md -------------------------------------------------------------------------------- /model/Core/Properties/endIntegerRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/endIntegerRange.md -------------------------------------------------------------------------------- /model/Core/Properties/endTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/endTime.md -------------------------------------------------------------------------------- /model/Core/Properties/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/extension.md -------------------------------------------------------------------------------- /model/Core/Properties/externalIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/externalIdentifier.md -------------------------------------------------------------------------------- /model/Core/Properties/externalIdentifierType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/externalIdentifierType.md -------------------------------------------------------------------------------- /model/Core/Properties/externalRef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/externalRef.md -------------------------------------------------------------------------------- /model/Core/Properties/externalRefType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/externalRefType.md -------------------------------------------------------------------------------- /model/Core/Properties/externalSpdxId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/externalSpdxId.md -------------------------------------------------------------------------------- /model/Core/Properties/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/from.md -------------------------------------------------------------------------------- /model/Core/Properties/geographicPointLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/geographicPointLocation.md -------------------------------------------------------------------------------- /model/Core/Properties/hashValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/hashValue.md -------------------------------------------------------------------------------- /model/Core/Properties/headquartersLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/headquartersLocation.md -------------------------------------------------------------------------------- /model/Core/Properties/identifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/identifier.md -------------------------------------------------------------------------------- /model/Core/Properties/identifierLocator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/identifierLocator.md -------------------------------------------------------------------------------- /model/Core/Properties/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/import.md -------------------------------------------------------------------------------- /model/Core/Properties/inLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/inLanguage.md -------------------------------------------------------------------------------- /model/Core/Properties/intendedUse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/intendedUse.md -------------------------------------------------------------------------------- /model/Core/Properties/isoAutomationLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/isoAutomationLevel.md -------------------------------------------------------------------------------- /model/Core/Properties/issuingAuthority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/issuingAuthority.md -------------------------------------------------------------------------------- /model/Core/Properties/key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/key.md -------------------------------------------------------------------------------- /model/Core/Properties/locationHint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/locationHint.md -------------------------------------------------------------------------------- /model/Core/Properties/locationTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/locationTime.md -------------------------------------------------------------------------------- /model/Core/Properties/locator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/locator.md -------------------------------------------------------------------------------- /model/Core/Properties/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/name.md -------------------------------------------------------------------------------- /model/Core/Properties/namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/namespace.md -------------------------------------------------------------------------------- /model/Core/Properties/namespaceMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/namespaceMap.md -------------------------------------------------------------------------------- /model/Core/Properties/originatedBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/originatedBy.md -------------------------------------------------------------------------------- /model/Core/Properties/packageVerificationCodeExcludedFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/packageVerificationCodeExcludedFile.md -------------------------------------------------------------------------------- /model/Core/Properties/postOfficeBoxNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/postOfficeBoxNumber.md -------------------------------------------------------------------------------- /model/Core/Properties/postalCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/postalCode.md -------------------------------------------------------------------------------- /model/Core/Properties/postalName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/postalName.md -------------------------------------------------------------------------------- /model/Core/Properties/prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/prefix.md -------------------------------------------------------------------------------- /model/Core/Properties/processRationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/processRationale.md -------------------------------------------------------------------------------- /model/Core/Properties/processReadiness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/processReadiness.md -------------------------------------------------------------------------------- /model/Core/Properties/processVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/processVersion.md -------------------------------------------------------------------------------- /model/Core/Properties/profileConformance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/profileConformance.md -------------------------------------------------------------------------------- /model/Core/Properties/provinceStateCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/provinceStateCode.md -------------------------------------------------------------------------------- /model/Core/Properties/quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/quantity.md -------------------------------------------------------------------------------- /model/Core/Properties/relationshipType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/relationshipType.md -------------------------------------------------------------------------------- /model/Core/Properties/releaseTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/releaseTime.md -------------------------------------------------------------------------------- /model/Core/Properties/rootElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/rootElement.md -------------------------------------------------------------------------------- /model/Core/Properties/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/scope.md -------------------------------------------------------------------------------- /model/Core/Properties/spdxId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/spdxId.md -------------------------------------------------------------------------------- /model/Core/Properties/specType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/specType.md -------------------------------------------------------------------------------- /model/Core/Properties/specVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/specVersion.md -------------------------------------------------------------------------------- /model/Core/Properties/standardName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/standardName.md -------------------------------------------------------------------------------- /model/Core/Properties/startTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/startTime.md -------------------------------------------------------------------------------- /model/Core/Properties/statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/statement.md -------------------------------------------------------------------------------- /model/Core/Properties/streetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/streetAddress.md -------------------------------------------------------------------------------- /model/Core/Properties/subject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/subject.md -------------------------------------------------------------------------------- /model/Core/Properties/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/summary.md -------------------------------------------------------------------------------- /model/Core/Properties/suppliedBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/suppliedBy.md -------------------------------------------------------------------------------- /model/Core/Properties/supportLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/supportLevel.md -------------------------------------------------------------------------------- /model/Core/Properties/to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/to.md -------------------------------------------------------------------------------- /model/Core/Properties/typeFromSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/typeFromSource.md -------------------------------------------------------------------------------- /model/Core/Properties/unitQUDT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/unitQUDT.md -------------------------------------------------------------------------------- /model/Core/Properties/validUntilTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/validUntilTime.md -------------------------------------------------------------------------------- /model/Core/Properties/value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/value.md -------------------------------------------------------------------------------- /model/Core/Properties/verifiedUsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Properties/verifiedUsing.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/AnnotationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/AnnotationType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/ContactPointRelationshipType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/ContactPointRelationshipType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/ExternalIdentifierType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/ExternalIdentifierType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/ExternalRefType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/ExternalRefType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/HashAlgorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/HashAlgorithm.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/IsoAutomationLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/IsoAutomationLevel.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/LifecycleScopeType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/LifecycleScopeType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/PresenceType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/PresenceType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/ProcessReadinessType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/ProcessReadinessType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/ProfileIdentifierType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/ProfileIdentifierType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/RelationshipCompleteness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/RelationshipCompleteness.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/RelationshipType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/RelationshipType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/SpecificationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/SpecificationType.md -------------------------------------------------------------------------------- /model/Core/Vocabularies/SupportType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Core/Vocabularies/SupportType.md -------------------------------------------------------------------------------- /model/Dataset/Classes/DatasetPackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Classes/DatasetPackage.md -------------------------------------------------------------------------------- /model/Dataset/Dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Dataset.md -------------------------------------------------------------------------------- /model/Dataset/Properties/anonymizationMethodUsed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/anonymizationMethodUsed.md -------------------------------------------------------------------------------- /model/Dataset/Properties/confidentialityLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/confidentialityLevel.md -------------------------------------------------------------------------------- /model/Dataset/Properties/dataCollectionProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/dataCollectionProcess.md -------------------------------------------------------------------------------- /model/Dataset/Properties/dataPreprocessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/dataPreprocessing.md -------------------------------------------------------------------------------- /model/Dataset/Properties/datasetAvailability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/datasetAvailability.md -------------------------------------------------------------------------------- /model/Dataset/Properties/datasetNoise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/datasetNoise.md -------------------------------------------------------------------------------- /model/Dataset/Properties/datasetSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/datasetSize.md -------------------------------------------------------------------------------- /model/Dataset/Properties/datasetType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/datasetType.md -------------------------------------------------------------------------------- /model/Dataset/Properties/datasetUpdateMechanism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/datasetUpdateMechanism.md -------------------------------------------------------------------------------- /model/Dataset/Properties/hasSensitivePersonalInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/hasSensitivePersonalInformation.md -------------------------------------------------------------------------------- /model/Dataset/Properties/intendedUse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/intendedUse.md -------------------------------------------------------------------------------- /model/Dataset/Properties/knownBias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/knownBias.md -------------------------------------------------------------------------------- /model/Dataset/Properties/sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Properties/sensor.md -------------------------------------------------------------------------------- /model/Dataset/Vocabularies/ConfidentialityLevelType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Vocabularies/ConfidentialityLevelType.md -------------------------------------------------------------------------------- /model/Dataset/Vocabularies/DatasetAvailabilityType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Vocabularies/DatasetAvailabilityType.md -------------------------------------------------------------------------------- /model/Dataset/Vocabularies/DatasetType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Dataset/Vocabularies/DatasetType.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/ConjunctiveLicenseSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/ConjunctiveLicenseSet.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/CustomLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/CustomLicense.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/CustomLicenseAddition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/CustomLicenseAddition.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/DisjunctiveLicenseSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/DisjunctiveLicenseSet.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/ExtendableLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/ExtendableLicense.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/IndividualLicensingInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/IndividualLicensingInfo.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/License.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/LicenseAddition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/LicenseAddition.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/ListedLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/ListedLicense.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/ListedLicenseException.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/ListedLicenseException.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/OrLaterOperator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/OrLaterOperator.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Classes/WithAdditionOperator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Classes/WithAdditionOperator.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/ExpandedLicensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/ExpandedLicensing.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Individuals/NoAssertionLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Individuals/NoAssertionLicense.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Individuals/NoneLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Individuals/NoneLicense.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/additionText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/additionText.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/deprecatedVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/deprecatedVersion.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/isDeprecatedAdditionId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/isDeprecatedAdditionId.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/isDeprecatedLicenseId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/isDeprecatedLicenseId.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/isFsfLibre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/isFsfLibre.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/isOsiApproved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/isOsiApproved.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/licenseXml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/licenseXml.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/listVersionAdded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/listVersionAdded.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/member.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/obsoletedBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/obsoletedBy.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/seeAlso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/seeAlso.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/standardAdditionTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/standardAdditionTemplate.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/standardLicenseHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/standardLicenseHeader.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/standardLicenseTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/standardLicenseTemplate.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/subjectAddition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/subjectAddition.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/subjectExtendableLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/subjectExtendableLicense.md -------------------------------------------------------------------------------- /model/ExpandedLicensing/Properties/subjectLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/ExpandedLicensing/Properties/subjectLicense.md -------------------------------------------------------------------------------- /model/Extension/Classes/CdxPropertiesExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Classes/CdxPropertiesExtension.md -------------------------------------------------------------------------------- /model/Extension/Classes/CdxPropertyEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Classes/CdxPropertyEntry.md -------------------------------------------------------------------------------- /model/Extension/Classes/Extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Classes/Extension.md -------------------------------------------------------------------------------- /model/Extension/Extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Extension.md -------------------------------------------------------------------------------- /model/Extension/Properties/cdxPropName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Properties/cdxPropName.md -------------------------------------------------------------------------------- /model/Extension/Properties/cdxPropValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Properties/cdxPropValue.md -------------------------------------------------------------------------------- /model/Extension/Properties/cdxProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Extension/Properties/cdxProperty.md -------------------------------------------------------------------------------- /model/Hardware/Classes/BulkHardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Classes/BulkHardware.md -------------------------------------------------------------------------------- /model/Hardware/Classes/Dimensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Classes/Dimensions.md -------------------------------------------------------------------------------- /model/Hardware/Classes/Hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Classes/Hardware.md -------------------------------------------------------------------------------- /model/Hardware/Classes/PhysicalHardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Classes/PhysicalHardware.md -------------------------------------------------------------------------------- /model/Hardware/Classes/ProductSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Classes/ProductSpecification.md -------------------------------------------------------------------------------- /model/Hardware/Classes/VirtualHardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Classes/VirtualHardware.md -------------------------------------------------------------------------------- /model/Hardware/Hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Hardware.md -------------------------------------------------------------------------------- /model/Hardware/Properties/additionalInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/additionalInformation.md -------------------------------------------------------------------------------- /model/Hardware/Properties/additionalInformationSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/additionalInformationSpecification.md -------------------------------------------------------------------------------- /model/Hardware/Properties/batchNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/batchNumber.md -------------------------------------------------------------------------------- /model/Hardware/Properties/bulkQuantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/bulkQuantity.md -------------------------------------------------------------------------------- /model/Hardware/Properties/category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/category.md -------------------------------------------------------------------------------- /model/Hardware/Properties/centerOfMass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/centerOfMass.md -------------------------------------------------------------------------------- /model/Hardware/Properties/dimensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/dimensions.md -------------------------------------------------------------------------------- /model/Hardware/Properties/hardwareVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/hardwareVersion.md -------------------------------------------------------------------------------- /model/Hardware/Properties/hazard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/hazard.md -------------------------------------------------------------------------------- /model/Hardware/Properties/itemVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/itemVersion.md -------------------------------------------------------------------------------- /model/Hardware/Properties/mass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/mass.md -------------------------------------------------------------------------------- /model/Hardware/Properties/massOfHardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/massOfHardware.md -------------------------------------------------------------------------------- /model/Hardware/Properties/partNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/partNumber.md -------------------------------------------------------------------------------- /model/Hardware/Properties/productAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/productAgent.md -------------------------------------------------------------------------------- /model/Hardware/Properties/releaseDate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/releaseDate.md -------------------------------------------------------------------------------- /model/Hardware/Properties/serialNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/serialNumber.md -------------------------------------------------------------------------------- /model/Hardware/Properties/virtualHardwareModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/virtualHardwareModel.md -------------------------------------------------------------------------------- /model/Hardware/Properties/xAxisLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/xAxisLength.md -------------------------------------------------------------------------------- /model/Hardware/Properties/yAxisLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/yAxisLength.md -------------------------------------------------------------------------------- /model/Hardware/Properties/zAxisLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Properties/zAxisLength.md -------------------------------------------------------------------------------- /model/Hardware/Vocabularies/VirtualHardwareModelType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Hardware/Vocabularies/VirtualHardwareModelType.md -------------------------------------------------------------------------------- /model/Licensing/Licensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Licensing/Licensing.md -------------------------------------------------------------------------------- /model/Lite/Lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Lite/Lite.md -------------------------------------------------------------------------------- /model/Security/Classes/CvssV2VulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/CvssV2VulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/CvssV3VulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/CvssV3VulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/CvssV4VulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/CvssV4VulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/EpssVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/EpssVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/ExploitCatalogVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/ExploitCatalogVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/SsvcVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/SsvcVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/VexAffectedVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/VexAffectedVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/VexFixedVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/VexFixedVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/VexNotAffectedVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/VexNotAffectedVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/VexUnderInvestigationVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/VexUnderInvestigationVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/VexVulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/VexVulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/VulnAssessmentRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/VulnAssessmentRelationship.md -------------------------------------------------------------------------------- /model/Security/Classes/Vulnerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Classes/Vulnerability.md -------------------------------------------------------------------------------- /model/Security/Properties/actionStatement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/actionStatement.md -------------------------------------------------------------------------------- /model/Security/Properties/actionStatementTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/actionStatementTime.md -------------------------------------------------------------------------------- /model/Security/Properties/assessedElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/assessedElement.md -------------------------------------------------------------------------------- /model/Security/Properties/catalogType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/catalogType.md -------------------------------------------------------------------------------- /model/Security/Properties/decisionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/decisionType.md -------------------------------------------------------------------------------- /model/Security/Properties/exploited.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/exploited.md -------------------------------------------------------------------------------- /model/Security/Properties/impactStatement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/impactStatement.md -------------------------------------------------------------------------------- /model/Security/Properties/impactStatementTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/impactStatementTime.md -------------------------------------------------------------------------------- /model/Security/Properties/justificationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/justificationType.md -------------------------------------------------------------------------------- /model/Security/Properties/locator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/locator.md -------------------------------------------------------------------------------- /model/Security/Properties/modifiedTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/modifiedTime.md -------------------------------------------------------------------------------- /model/Security/Properties/percentile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/percentile.md -------------------------------------------------------------------------------- /model/Security/Properties/probability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/probability.md -------------------------------------------------------------------------------- /model/Security/Properties/publishedTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/publishedTime.md -------------------------------------------------------------------------------- /model/Security/Properties/score.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/score.md -------------------------------------------------------------------------------- /model/Security/Properties/severity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/severity.md -------------------------------------------------------------------------------- /model/Security/Properties/statusNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/statusNotes.md -------------------------------------------------------------------------------- /model/Security/Properties/vectorString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/vectorString.md -------------------------------------------------------------------------------- /model/Security/Properties/vexVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/vexVersion.md -------------------------------------------------------------------------------- /model/Security/Properties/withdrawnTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Properties/withdrawnTime.md -------------------------------------------------------------------------------- /model/Security/Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Security.md -------------------------------------------------------------------------------- /model/Security/Vocabularies/CvssSeverityType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Vocabularies/CvssSeverityType.md -------------------------------------------------------------------------------- /model/Security/Vocabularies/ExploitCatalogType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Vocabularies/ExploitCatalogType.md -------------------------------------------------------------------------------- /model/Security/Vocabularies/SsvcDecisionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Vocabularies/SsvcDecisionType.md -------------------------------------------------------------------------------- /model/Security/Vocabularies/VexJustificationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Security/Vocabularies/VexJustificationType.md -------------------------------------------------------------------------------- /model/Service/Classes/SoftwareService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Service/Classes/SoftwareService.md -------------------------------------------------------------------------------- /model/Service/Properties/provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Service/Properties/provider.md -------------------------------------------------------------------------------- /model/Service/Properties/serverAuthenticationProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Service/Properties/serverAuthenticationProtocol.md -------------------------------------------------------------------------------- /model/Service/Properties/serviceHostingCountry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Service/Properties/serviceHostingCountry.md -------------------------------------------------------------------------------- /model/Service/Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Service/Service.md -------------------------------------------------------------------------------- /model/Service/Vocabularies/AuthenticationProtocolType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Service/Vocabularies/AuthenticationProtocolType.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Classes/AnyLicenseInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Classes/AnyLicenseInfo.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Classes/LicenseExpression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Classes/LicenseExpression.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Classes/SimpleLicensingText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Classes/SimpleLicensingText.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Properties/customIdToUri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Properties/customIdToUri.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Properties/licenseExpression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Properties/licenseExpression.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Properties/licenseListVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Properties/licenseListVersion.md -------------------------------------------------------------------------------- /model/SimpleLicensing/Properties/licenseText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/Properties/licenseText.md -------------------------------------------------------------------------------- /model/SimpleLicensing/SimpleLicensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SimpleLicensing/SimpleLicensing.md -------------------------------------------------------------------------------- /model/Software/Classes/ContentIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Classes/ContentIdentifier.md -------------------------------------------------------------------------------- /model/Software/Classes/File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Classes/File.md -------------------------------------------------------------------------------- /model/Software/Classes/Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Classes/Package.md -------------------------------------------------------------------------------- /model/Software/Classes/Sbom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Classes/Sbom.md -------------------------------------------------------------------------------- /model/Software/Classes/Snippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Classes/Snippet.md -------------------------------------------------------------------------------- /model/Software/Classes/SoftwareArtifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Classes/SoftwareArtifact.md -------------------------------------------------------------------------------- /model/Software/Properties/additionalPurpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/additionalPurpose.md -------------------------------------------------------------------------------- /model/Software/Properties/artifactSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/artifactSize.md -------------------------------------------------------------------------------- /model/Software/Properties/attributionText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/attributionText.md -------------------------------------------------------------------------------- /model/Software/Properties/byteRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/byteRange.md -------------------------------------------------------------------------------- /model/Software/Properties/contentIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/contentIdentifier.md -------------------------------------------------------------------------------- /model/Software/Properties/contentIdentifierType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/contentIdentifierType.md -------------------------------------------------------------------------------- /model/Software/Properties/contentIdentifierValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/contentIdentifierValue.md -------------------------------------------------------------------------------- /model/Software/Properties/copyrightText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/copyrightText.md -------------------------------------------------------------------------------- /model/Software/Properties/downloadLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/downloadLocation.md -------------------------------------------------------------------------------- /model/Software/Properties/fileKind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/fileKind.md -------------------------------------------------------------------------------- /model/Software/Properties/homePage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/homePage.md -------------------------------------------------------------------------------- /model/Software/Properties/lineRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/lineRange.md -------------------------------------------------------------------------------- /model/Software/Properties/packageUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/packageUrl.md -------------------------------------------------------------------------------- /model/Software/Properties/packageVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/packageVersion.md -------------------------------------------------------------------------------- /model/Software/Properties/primaryPurpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/primaryPurpose.md -------------------------------------------------------------------------------- /model/Software/Properties/sbomType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/sbomType.md -------------------------------------------------------------------------------- /model/Software/Properties/snippetFromFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/snippetFromFile.md -------------------------------------------------------------------------------- /model/Software/Properties/sourceInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Properties/sourceInfo.md -------------------------------------------------------------------------------- /model/Software/Software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Software.md -------------------------------------------------------------------------------- /model/Software/Vocabularies/ContentIdentifierType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Vocabularies/ContentIdentifierType.md -------------------------------------------------------------------------------- /model/Software/Vocabularies/FileKindType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Vocabularies/FileKindType.md -------------------------------------------------------------------------------- /model/Software/Vocabularies/SbomType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Vocabularies/SbomType.md -------------------------------------------------------------------------------- /model/Software/Vocabularies/SoftwarePurpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/Software/Vocabularies/SoftwarePurpose.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/AssemblyAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/AssemblyAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/AssemblyProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/AssemblyProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/BoundaryCrossingAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/BoundaryCrossingAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/BoundaryDefinitionAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/BoundaryDefinitionAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/BoundaryDefinitionProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/BoundaryDefinitionProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ChangeAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ChangeAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ChangeProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ChangeProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/CreateAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/CreateAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/CreateProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/CreateProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/DefinedStateProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/DefinedStateProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/DestroyAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/DestroyAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/DestroyProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/DestroyProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/HarvestAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/HarvestAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/HarvestProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/HarvestProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/InspectionAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/InspectionAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/InspectionProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/InspectionProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/InstantiateVirtualHardwareProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/InstantiateVirtualHardwareProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ManufactureAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ManufactureAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ManufactureProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ManufactureProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ModifyAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ModifyAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ModifyProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ModifyProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/OutOfSpecAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/OutOfSpecAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/PlanAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/PlanAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/PlanProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/PlanProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ReproduceAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ReproduceAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ReproduceProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ReproduceProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ResolutionAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ResolutionAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ResponsibilityChangeAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ResponsibilityChangeAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/ResponsibilityChangeProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/ResponsibilityChangeProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/State.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/State.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/StateAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/StateAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/StorageAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/StorageAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/StorageProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/StorageProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/TestAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/TestAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/TestProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/TestProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/TransportAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/TransportAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/TransportProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/TransportProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/UseAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/UseAction.md -------------------------------------------------------------------------------- /model/SupplyChain/Classes/UseProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Classes/UseProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/boundaryParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/boundaryParameter.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/current.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/current.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/currentState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/currentState.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/decisionProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/decisionProcess.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/destructionPerformedBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/destructionPerformedBy.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/dropoffLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/dropoffLocation.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/forDropoffLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/forDropoffLocation.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/forPickupLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/forPickupLocation.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/pickupLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/pickupLocation.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/plannedCurrent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/plannedCurrent.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/plannedInspectionLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/plannedInspectionLocation.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/plannedPrevious.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/plannedPrevious.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/plannedProductofResponsibilityChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/plannedProductofResponsibilityChange.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/plannedStorageLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/plannedStorageLocation.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/plannedTransportRoutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/plannedTransportRoutes.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/previous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/previous.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/responsibilityCategory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/responsibilityCategory.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/responsibilityChangedOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/responsibilityChangedOn.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/transportRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/transportRoute.md -------------------------------------------------------------------------------- /model/SupplyChain/Properties/vaildState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Properties/vaildState.md -------------------------------------------------------------------------------- /model/SupplyChain/SupplyChain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/SupplyChain.md -------------------------------------------------------------------------------- /model/SupplyChain/Vocabularies/ResponsibilityType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/model/SupplyChain/Vocabularies/ResponsibilityType.md -------------------------------------------------------------------------------- /scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/scope.md -------------------------------------------------------------------------------- /serialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/README.md -------------------------------------------------------------------------------- /serialization/canonical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/canonical.md -------------------------------------------------------------------------------- /serialization/cbor.md: -------------------------------------------------------------------------------- 1 | # CBOR serialization 2 | -------------------------------------------------------------------------------- /serialization/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/json.md -------------------------------------------------------------------------------- /serialization/jsonld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld.md -------------------------------------------------------------------------------- /serialization/jsonld/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples.md -------------------------------------------------------------------------------- /serialization/jsonld/examples/agent1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/agent1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/annotation1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/annotation1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/converted_from_spdx_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/converted_from_spdx_2.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/file1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/file1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/org1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/org1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/package1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/package1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/person1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/person1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/person2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/person2.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/person3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/person3.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/relationship1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/relationship1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/sbom1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/sbom1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/spdx_document1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/spdx_document1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/spdx_document2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/spdx_document2.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/spdx_document3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/spdx_document3.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/spdx_document4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/spdx_document4.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/tool1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/tool1.json -------------------------------------------------------------------------------- /serialization/jsonld/examples/two_sboms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/examples/two_sboms.json -------------------------------------------------------------------------------- /serialization/jsonld/validation-vscode-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/validation-vscode-error.png -------------------------------------------------------------------------------- /serialization/jsonld/validation-vscode-suggestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/validation-vscode-suggestion.png -------------------------------------------------------------------------------- /serialization/jsonld/validation-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/validation-vscode.png -------------------------------------------------------------------------------- /serialization/jsonld/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/jsonld/validation.md -------------------------------------------------------------------------------- /serialization/rdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/spdx-3-model/HEAD/serialization/rdf.md --------------------------------------------------------------------------------