|
100 | 100 | "items": {"$ref": "#/definitions/formula"}, |
101 | 101 | "uniqueItems": true, |
102 | 102 | "title": "Formulation", |
103 | | - "description": "Describes how a component or service was manufactured or deployed. This is achieved through the use of formulas, workflows, tasks, and steps, which declare the precise steps to reproduce along with the observed formulas describing the steps which transpired in the manufacturing process." |
| 103 | + "description": "Describes the formulation of any referencable object within the BOM, including components, services, metadata, declarations, or the BOM itself. This may encompass how the object was created, assembled, deployed, tested, certified, or otherwise brought into its present form. Common examples include software build pipelines, deployment processes, AI/ML model training, cryptographic key generation or certification, and third-party audits. Processes are modeled using declared and observed formulas, composed of workflows, tasks, and individual steps." |
104 | 104 | }, |
105 | 105 | "declarations": { |
106 | 106 | "type": "object", |
|
527 | 527 | } |
528 | 528 | } |
529 | 529 | }, |
| 530 | + "citations": { |
| 531 | + "type": "array", |
| 532 | + "items": {"$ref": "#/definitions/citation"}, |
| 533 | + "uniqueItems": true, |
| 534 | + "title": "Citations", |
| 535 | + "description": "A collection of attributions indicating which entity supplied information for specific fields within the BOM." |
| 536 | + }, |
530 | 537 | "properties": { |
531 | 538 | "type": "array", |
532 | 539 | "title": "Properties", |
|
1900 | 1907 | "patent", |
1901 | 1908 | "patent-family", |
1902 | 1909 | "patent-assertion", |
| 1910 | + "citation", |
1903 | 1911 | "other" |
1904 | 1912 | ], |
1905 | 1913 | "meta:enum": { |
|
1925 | 1933 | "log": "A record of events that occurred in a computer system or application, such as problems, errors, or information on current operations.", |
1926 | 1934 | "configuration": "Parameters or settings that may be used by other components or services.", |
1927 | 1935 | "evidence": "Information used to substantiate a claim.", |
1928 | | - "formulation": "Describes how a component or service was manufactured or deployed.", |
| 1936 | + "formulation": "Describes the formulation of any referencable object within the BOM, including components, services, metadata, declarations, or the BOM itself.", |
1929 | 1937 | "attestation": "Human or machine-readable statements containing facts, evidence, or testimony.", |
1930 | 1938 | "threat-model": "An enumeration of identified weaknesses, threats, and countermeasures, dataflow diagram (DFD), attack tree, and other supporting documentation in human-readable or machine-readable format.", |
1931 | 1939 | "adversary-model": "The defined assumptions, goals, and capabilities of an adversary.", |
|
1948 | 1956 | "patent": "References information about patents which may be defined in human-readable documents or in machine-readable formats such as CycloneDX or ST.96. For detailed patent information or to reference the information provided directly by patent offices, it is recommended to leverage standards from the World Intellectual Property Organization (WIPO) such as [ST.96](https://www.wipo.int/standards/en/st96).", |
1949 | 1957 | "patent-family": "References information about a patent family which may be defined in human-readable documents or in machine-readable formats such as CycloneDX or ST.96. A patent family is a group of related patent applications or granted patents that cover the same or similar invention. For detailed patent family information or to reference the information provided directly by patent offices, it is recommended to leverage standards from the World Intellectual Property Organization (WIPO) such as [ST.96](https://www.wipo.int/standards/en/st96).", |
1950 | 1958 | "patent-assertion" : "References assertions made regarding patents associated with a component or service. Assertions distinguish between ownership, licensing, and other relevant interactions with patents.", |
| 1959 | + "citation": "A reference to external citations applicable to the object identified by this BOM entry or the BOM itself. When used with a BOM-Link, this allows offloading citations into a separate CycloneDX BOM.", |
1951 | 1960 | "other": "Use this if no other types accurately describe the purpose of the external reference." |
1952 | 1961 | } |
1953 | 1962 | }, |
|
6105 | 6114 | "$ref": "#/definitions/patentFilingDate" |
6106 | 6115 | } |
6107 | 6116 | } |
| 6117 | + }, |
| 6118 | + "citation": { |
| 6119 | + "type": "object", |
| 6120 | + "title": "Citation", |
| 6121 | + "description": "Details a specific attribution of data within the BOM to a contributing entity or process.", |
| 6122 | + "additionalProperties": false, |
| 6123 | + "properties": { |
| 6124 | + "bom-ref": { |
| 6125 | + "$ref": "#/definitions/refType", |
| 6126 | + "title": "BOM Reference" |
| 6127 | + }, |
| 6128 | + "pointers": { |
| 6129 | + "type": "array", |
| 6130 | + "items": { |
| 6131 | + "type": "string", |
| 6132 | + "title": "Field Reference", |
| 6133 | + "description": "A [JSON Pointer](https://datatracker.ietf.org/doc/html/rfc6901) identifying the BOM field to which the attribution applies.\nUsers of other serialisation formats (e.g. XML) shall use the JSON Pointer format to ensure consistent field referencing across representations." |
| 6134 | + }, |
| 6135 | + "minItems": 1, |
| 6136 | + "title": "Field References", |
| 6137 | + "description": "One or more [JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901) identifying the BOM fields to which the attribution applies.\nExactly one of the \"pointers\" or \"expressions\" elements must be present." |
| 6138 | + }, |
| 6139 | + "expressions": { |
| 6140 | + "type": "array", |
| 6141 | + "items": { |
| 6142 | + "type": "string", |
| 6143 | + "title": "Path Expression", |
| 6144 | + "description": "Specifies a path expression used to locate a value within a BOM. The expression syntax shall conform to the format of the BOM's serialisation.\nUse [JSONPath](https://datatracker.ietf.org/doc/html/rfc9535) for JSON, [XPath](https://www.w3.org/TR/xpath/) for XML, and default to JSONPath for Protocol Buffers unless otherwise specified.\nImplementers shall ensure the expression is valid within the context of the applicable serialisation format." |
| 6145 | + }, |
| 6146 | + "minItems": 1, |
| 6147 | + "title": "Path Expressions", |
| 6148 | + "description": "One or more path expressions used to locate values within a BOM.\nExactly one of the \"pointers\" or \"expressions\" elements must be present." |
| 6149 | + }, |
| 6150 | + "timestamp": { |
| 6151 | + "type": "string", |
| 6152 | + "format": "date-time", |
| 6153 | + "title": "Timestamp", |
| 6154 | + "description": "The date and time when the attribution was made or the information was supplied." |
| 6155 | + }, |
| 6156 | + "attributedTo": { |
| 6157 | + "$ref": "#/definitions/refLinkType", |
| 6158 | + "title": "Attributed To", |
| 6159 | + "description": "The `bom-ref` of an object, such as a component, service, tool, organisational entity, or person that supplied the cited information.\nAt least one of the \"attributedTo\" or \"process\" elements must be present." |
| 6160 | + }, |
| 6161 | + "process": { |
| 6162 | + "$ref": "#/definitions/refLinkType", |
| 6163 | + "title": "Process Reference", |
| 6164 | + "description": "The `bom-ref` to a process (such as a formula, workflow, task, or step) defined in the `formulation` section that executed or generated the attributed data.\nAt least one of the \"attributedTo\" or \"process\" elements must be present." |
| 6165 | + }, |
| 6166 | + "note": { |
| 6167 | + "type": "string", |
| 6168 | + "title": "Note", |
| 6169 | + "description": "An optional description or comment about the context or quality of the data attribution." |
| 6170 | + }, |
| 6171 | + "signature": { |
| 6172 | + "$ref": "#/definitions/signature", |
| 6173 | + "title": "Signature", |
| 6174 | + "description": "An optional digital signature verifying the authenticity or integrity of the attribution." |
| 6175 | + } |
| 6176 | + }, |
| 6177 | + "required": ["timestamp"], |
| 6178 | + "anyOf": [ |
| 6179 | + { "required": ["attributedTo"] }, |
| 6180 | + { "required": ["process"] } |
| 6181 | + ], |
| 6182 | + "oneOf": [ |
| 6183 | + { "required": ["pointers"] }, |
| 6184 | + { "required": ["expressions"] } |
| 6185 | + ] |
6108 | 6186 | } |
6109 | 6187 | } |
6110 | 6188 | } |
0 commit comments