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 (
|
||||
// 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.
|
||||
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",
|
||||
"$id": "anchore.io/schema/syft/json/16.0.31/document",
|
||||
"$id": "anchore.io/schema/syft/json/16.0.32/document",
|
||||
"$ref": "#/$defs/Document",
|
||||
"$defs": {
|
||||
"AlpmDbEntry": {
|
||||
@ -1448,9 +1448,6 @@
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"fullText": {
|
||||
"type": "string"
|
||||
},
|
||||
"spdxExpression": {
|
||||
"type": "string"
|
||||
},
|
||||
@ -1476,7 +1473,6 @@
|
||||
"type": "object",
|
||||
"required": [
|
||||
"value",
|
||||
"fullText",
|
||||
"spdxExpression",
|
||||
"type",
|
||||
"urls",
|
||||
|
||||
@ -47,7 +47,6 @@ type licenses []License
|
||||
|
||||
type License struct {
|
||||
Value string `json:"value"`
|
||||
FullText string `json:"fullText"`
|
||||
SPDXExpression string `json:"spdxExpression"`
|
||||
Type license.Type `json:"type"`
|
||||
URLs []string `json:"urls"`
|
||||
|
||||
@ -15,7 +15,6 @@
|
||||
"licenses": [
|
||||
{
|
||||
"value": "MIT",
|
||||
"fullText": "",
|
||||
"spdxExpression": "MIT",
|
||||
"type": "declared",
|
||||
"urls": [],
|
||||
|
||||
@ -15,7 +15,6 @@
|
||||
"licenses": [
|
||||
{
|
||||
"value": "MIT",
|
||||
"fullText": "",
|
||||
"spdxExpression": "MIT",
|
||||
"type": "declared",
|
||||
"urls": [],
|
||||
|
||||
@ -16,7 +16,6 @@
|
||||
"licenses": [
|
||||
{
|
||||
"value": "MIT",
|
||||
"fullText": "",
|
||||
"spdxExpression": "MIT",
|
||||
"type": "declared",
|
||||
"urls": [],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user