From 8f108ea03269e43c19109bf472fbf5951fcc3c97 Mon Sep 17 00:00:00 2001 From: "Michael C. Fanning" Date: Fri, 7 Dec 2018 16:22:23 -0800 Subject: [PATCH] Remove 'package' as a documented logical location kind in the schema. Documentation only change. (#1162) --- src/Sarif/Autogenerated/LogicalLocation.cs | 2 +- src/Sarif/Schemata/sarif-schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sarif/Autogenerated/LogicalLocation.cs b/src/Sarif/Autogenerated/LogicalLocation.cs index f47b71ce2..7e1a3f24b 100644 --- a/src/Sarif/Autogenerated/LogicalLocation.cs +++ b/src/Sarif/Autogenerated/LogicalLocation.cs @@ -57,7 +57,7 @@ public SarifNodeKind SarifNodeKind public string ParentKey { get; set; } /// - /// The type of construct this logicalLocationComponent refers to. Should be one of 'function', 'member', 'module', 'namespace', 'package', 'parameter', 'resource', 'returnType', 'type', or 'variable', if any of those accurately describe the construct. + /// The type of construct this logicalLocationComponent refers to. Should be one of 'function', 'member', 'module', 'namespace', 'parameter', 'resource', 'returnType', 'type', or 'variable', if any of those accurately describe the construct. /// [DataMember(Name = "kind", IsRequired = false, EmitDefaultValue = false)] public string Kind { get; set; } diff --git a/src/Sarif/Schemata/sarif-schema.json b/src/Sarif/Schemata/sarif-schema.json index a837dd536..736b995d8 100644 --- a/src/Sarif/Schemata/sarif-schema.json +++ b/src/Sarif/Schemata/sarif-schema.json @@ -806,7 +806,7 @@ }, "kind": { - "description": "The type of construct this logicalLocationComponent refers to. Should be one of 'function', 'member', 'module', 'namespace', 'package', 'parameter', 'resource', 'returnType', 'type', or 'variable', if any of those accurately describe the construct.", + "description": "The type of construct this logicalLocationComponent refers to. Should be one of 'function', 'member', 'module', 'namespace', 'parameter', 'resource', 'returnType', 'type', or 'variable', if any of those accurately describe the construct.", "type": "string" },