Web Resource

web_resource

The Web Resource object describes characteristics of a web resource that was affected by the activity/event.

Contents

Attributes

Caption Name Type Is Array Default Description
Data data JSON Details of the web resource, e.g, file details, search results or application-defined resource.
Data Classification data_classification Data Classification The Data Classification object includes information about data classification levels and data category types.
Description desc String Description of the web resource.
Labels labels String The list of labels/tags associated to a resource.
Name name String The name of the web resource.
Raw Data raw_data JSON The event data as received from the event source.
Record ID record_id String Unique identifier for the object
Type type String The web resource type as defined by the event source.
Unique ID uid String The unique identifier of the web resource.
Unmapped Data unmapped Unmapped The attributes that are not mapped to the event schema. The names and values of those attributes are specific to the event source.
URL String url_string URL String The URL pointing towards the source of the web resource.

Context

Web Resource

JSON

            
{
  "caption": "Web Resource",
  "description": "The Web Resource object describes characteristics of a web resource that was affected by the activity/event.",
  "extends": "_resource",
  "name": "web_resource",
  "attributes": {
    "data": {
      "description": "Details of the web resource, e.g, <code>file</code> details, <code>search</code> results or application-defined resource.",
      "requirement": "optional",
      "caption": "Data",
      "type": "json_t"
    },
    "desc": {
      "description": "Description of the web resource.",
      "requirement": "optional",
      "caption": "Description",
      "type": "string_t"
    },
    "name": {
      "description": "The name of the web resource.",
      "requirement": "recommended",
      "caption": "Name",
      "type": "string_t"
    },
    "type": {
      "description": "The web resource type as defined by the event source.",
      "requirement": "optional",
      "caption": "Type",
      "type": "string_t"
    },
    "uid": {
      "description": "The unique identifier of the web resource.",
      "requirement": "recommended",
      "caption": "Unique ID",
      "type": "string_t"
    },
    "url_string": {
      "description": "The URL pointing towards the source of the web resource.",
      "requirement": "recommended",
      "caption": "URL String",
      "type": "url_t"
    },
    "$include": [
      "profiles/data_classification.json"
    ],
    "labels": {
      "description": "The list of labels/tags associated to a resource.",
      "requirement": "optional",
      "caption": "Labels",
      "type": "string_t",
      "is_array": true
    },
    "data_classification": {
      "group": "context",
      "requirement": "recommended",
      "caption": "Data Classification",
      "description": "The Data Classification object includes information about data classification levels and data category types.",
      "type": "data_classification"
    },
    "raw_data": {
      "group": "context",
      "caption": "Raw Data",
      "description": "The event data as received from the event source.",
      "type": "json_t"
    },
    "record_id": {
      "description": "Unique identifier for the object",
      "group": "primary",
      "requirement": "required",
      "caption": "Record ID",
      "type": "string_t"
    },
    "unmapped": {
      "caption": "Unmapped Data",
      "description": "The attributes that are not mapped to the event schema. The names and values of those attributes are specific to the event source.",
      "type": "unmapped",
      "is_array": true
    }
  },
  "profiles": [
    "data_classification"
  ],
  "constraints": {
    "at_least_one": [
      "name",
      "uid"
    ]
  }
}