Skip to content

Commit

Permalink
Fix Threat Intelligence Swagger Correctness S360 (Azure#13043)
Browse files Browse the repository at this point in the history
* Fix Threat Intelligence Swagger Correctness S360

* Add custom word
  • Loading branch information
hunngu-ms authored and mkarmark committed Jul 20, 2021
1 parent 50d68b5 commit ab3d1ef
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 5 deletions.
3 changes: 2 additions & 1 deletion custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2105,4 +2105,5 @@ lifecycles
backuptype
FSLogix
privatelinkservice
natgateway
natgateway
defanged
Original file line number Diff line number Diff line change
Expand Up @@ -12137,6 +12137,10 @@
"description": "Pattern type of a threat intelligence entity",
"type": "string"
},
"patternVersion": {
"description": "Pattern version of a threat intelligence entity",
"type": "string"
},
"killChainPhases": {
"description": "Kill chain phases",
"items": {
Expand All @@ -12161,11 +12165,19 @@
"description": "Created by reference of threat intelligence entity",
"type": "string"
},
"defanged": {
"description": "Is threat intelligence entity defanged",
"type": "boolean"
},
"externalLastUpdatedTimeUtc": {
"description": "External last updated time in UTC",
"type": "string"
},
"externalReferences": {
"description": "External References",
"items": {
"description": "external_reference",
"type": "string"
"$ref": "#/definitions/ThreatIntelligenceExternalReference"
},
"type": "array"
},
Expand All @@ -12177,6 +12189,14 @@
},
"type": "array"
},
"labels": {
"description": "Labels of threat intelligence entity",
"items": {
"description": "label",
"type": "string"
},
"type": "array"
},
"revoked": {
"description": "Is threat intelligence entity revoked",
"type": "boolean"
Expand All @@ -12186,10 +12206,10 @@
"type": "integer",
"format": "int32"
},
"labels": {
"description": "Labels of threat intelligence entity",
"objectMarkingRefs": {
"description": "Threat intelligence entity object marking references",
"items": {
"description": "label",
"description": "Threat intelligence entity object marking reference",
"type": "string"
},
"type": "array"
Expand Down Expand Up @@ -12299,6 +12319,35 @@
},
"type": "object"
},
"ThreatIntelligenceExternalReference": {
"description": "Describes external reference",
"properties": {
"description": {
"description": "External reference description",
"type": "string"
},
"externalId": {
"description": "External reference ID",
"type": "string"
},
"sourceName": {
"description": "External reference source name",
"type": "string"
},
"url": {
"description": "External reference URL",
"type": "string"
},
"hashes": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "External reference hashes"
}
},
"type": "object"
},
"ThreatIntelligenceFilteringCriteria": {
"description": "Filtering criteria for querying threat intelligence indicators.",
"properties": {
Expand Down

0 comments on commit ab3d1ef

Please sign in to comment.