changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "context": {
+ "description": "Additional context fields from OTX API response",
+ "type": "object"
+ },
+ "indicator": {
+ "description": "The indicator being looked up",
+ "type": "string"
+ },
+ "pulse_count": {
+ "description": "Number of pulses referencing this indicator",
+ "type": "number"
+ },
+ "pulses": {
+ "description": "Pulses containing this indicator",
+ "items": {
+ "properties": {
+ "attack_ids": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "author": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "indicators_count": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "industries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "malware_families": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "modified": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "otx_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "targeted_countries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "type": {
+ "description": "Detected or specified indicator type",
+ "enum": [
+ "IPv4",
+ "IPv6",
+ "domain",
+ "hostname",
+ "url",
+ "file"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "indicator",
+ "type",
+ "pulse_count",
+ "pulses",
+ "context"
+ ],
+ "type": "object"
+}