mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
feat: remove full-text before release (#3889)
Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
This commit is contained in:
parent
e5d7760bb8
commit
3c7018a853
@ -3,5 +3,5 @@ package internal
|
|||||||
const (
|
const (
|
||||||
// JSONSchemaVersion is the current schema version output by the JSON encoder
|
// JSONSchemaVersion is the current schema version output by the JSON encoder
|
||||||
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
|
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
|
||||||
JSONSchemaVersion = "16.0.31"
|
JSONSchemaVersion = "16.0.32"
|
||||||
)
|
)
|
||||||
|
|||||||
3052
schema/json/schema-16.0.32.json
Normal file
3052
schema/json/schema-16.0.32.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "anchore.io/schema/syft/json/16.0.31/document",
|
"$id": "anchore.io/schema/syft/json/16.0.32/document",
|
||||||
"$ref": "#/$defs/Document",
|
"$ref": "#/$defs/Document",
|
||||||
"$defs": {
|
"$defs": {
|
||||||
"AlpmDbEntry": {
|
"AlpmDbEntry": {
|
||||||
@ -1448,9 +1448,6 @@
|
|||||||
"value": {
|
"value": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"fullText": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"spdxExpression": {
|
"spdxExpression": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@ -1476,7 +1473,6 @@
|
|||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"value",
|
"value",
|
||||||
"fullText",
|
|
||||||
"spdxExpression",
|
"spdxExpression",
|
||||||
"type",
|
"type",
|
||||||
"urls",
|
"urls",
|
||||||
|
|||||||
@ -47,7 +47,6 @@ type licenses []License
|
|||||||
|
|
||||||
type License struct {
|
type License struct {
|
||||||
Value string `json:"value"`
|
Value string `json:"value"`
|
||||||
FullText string `json:"fullText"`
|
|
||||||
SPDXExpression string `json:"spdxExpression"`
|
SPDXExpression string `json:"spdxExpression"`
|
||||||
Type license.Type `json:"type"`
|
Type license.Type `json:"type"`
|
||||||
URLs []string `json:"urls"`
|
URLs []string `json:"urls"`
|
||||||
|
|||||||
@ -15,7 +15,6 @@
|
|||||||
"licenses": [
|
"licenses": [
|
||||||
{
|
{
|
||||||
"value": "MIT",
|
"value": "MIT",
|
||||||
"fullText": "",
|
|
||||||
"spdxExpression": "MIT",
|
"spdxExpression": "MIT",
|
||||||
"type": "declared",
|
"type": "declared",
|
||||||
"urls": [],
|
"urls": [],
|
||||||
|
|||||||
@ -15,7 +15,6 @@
|
|||||||
"licenses": [
|
"licenses": [
|
||||||
{
|
{
|
||||||
"value": "MIT",
|
"value": "MIT",
|
||||||
"fullText": "",
|
|
||||||
"spdxExpression": "MIT",
|
"spdxExpression": "MIT",
|
||||||
"type": "declared",
|
"type": "declared",
|
||||||
"urls": [],
|
"urls": [],
|
||||||
|
|||||||
@ -16,7 +16,6 @@
|
|||||||
"licenses": [
|
"licenses": [
|
||||||
{
|
{
|
||||||
"value": "MIT",
|
"value": "MIT",
|
||||||
"fullText": "",
|
|
||||||
"spdxExpression": "MIT",
|
"spdxExpression": "MIT",
|
||||||
"type": "declared",
|
"type": "declared",
|
||||||
"urls": [],
|
"urls": [],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user