GreyNoise Intelligence · Schema
SessionField
SecurityThreat IntelligenceCybersecurityIP ReputationVulnerability ManagementNetwork TelemetrySOC AutomationPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The field identifier used in queries. |
| label | string | Human-readable label for the field. |
| description | string | Description of the field. |
| type | string | Data type of the field. |
| group | string | Logical grouping of the field. |
| sortable | boolean | Whether the field can be used for sorting. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/greynoise/json-schema/greynoise-session-field-schema.json",
"title": "SessionField",
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "The field identifier used in queries.",
"example": "source.ip"
},
"label": {
"type": "string",
"description": "Human-readable label for the field.",
"example": "Source IP"
},
"description": {
"type": "string",
"description": "Description of the field.",
"example": "The source IP address of the session."
},
"type": {
"type": "string",
"description": "Data type of the field.",
"example": "ip"
},
"group": {
"type": "string",
"description": "Logical grouping of the field.",
"example": "source"
},
"sortable": {
"type": "boolean",
"description": "Whether the field can be used for sorting.",
"example": true
}
}
}