sboms_endoflife
1 row
This data as json, CSV (advanced)
Link | rowid ▼ | package_name | version | current_version | package_type | product_name | cycle |
---|---|---|---|---|---|---|---|
1 | 1 | rails | 5.0.0 | 5.0.0 | gem | rails | 5.0 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE sboms_endoflife ( -- what package is this? -- -- Foreign key: `sboms.package_name` package_name TEXT NOT NULL, -- version indicates the version of this dependency. -- -- NOTE this could be a version constraint, such as any of: -- -- <=1.3.4,>=1.3.0 -- "~> 0.9" -- latest -- ^2.0.6 -- =1.0.4 -- (NULL) -- -- As well as a specific value, such as: -- -- 1.0.4 -- 10 -- latest -- -- This versioning will be implementation-specific for the `package_manager` -- in use. -- -- NOTE that due to the quality of the tool producing the SBOM, this field -- may be NULL. -- -- Foreign key: `sboms.version` version TEXT, -- current_version defines the current version that this package's `version` -- resolves to. -- -- If the `version` is an exact version number, such as `1.0.4`, then -- `current_version` will usually be the same value, `1.0.4`. -- -- NOTE that due to the quality of the tool producing the SBOM, this field -- may be NULL, or this may not be an exact value, but a version constraint -- similar to `version`. -- -- Foreign key: `sboms.current_version` current_version TEXT, -- package_type most commonly relates to the "Type" field of a Package URL -- (as defined by https://github.com/package-url/purl-spec), which may be a -- package ecosystem or package manager type -- -- Foreign key: `sboms.package_type` package_type TEXT NOT NULL, -- product_name describes an EndOfLife.date Product name. -- For example: -- go -- ansible -- sqlite -- -- Foreign key: `endoflifedate_products.product_name` product_name TEXT NOT NULL, -- cycle of the given product, as defined by EndOfLife.date, and the product -- itself. -- -- For example (non-exhaustively): -- sqlite has cycles: `3`, `2`, `1` -- go has cycles: `1.21`, `1.20`, `1.5` -- -- Foreign key: `endoflifedate_products.cycle` cycle TEXT NOT NULL, UNIQUE (package_name, version, package_type) ON CONFLICT REPLACE );