KnowledgeGraphDateTimeProto

AI Overview😉

  • The potential purpose of this module is to accurately understand and process dates and times mentioned in content, allowing Google to better understand the context and relevance of the information. This module appears to be part of the Knowledge Graph, which is a database that stores information about entities, including dates and times related to those entities.
  • This module could impact search results by allowing Google to more accurately determine the relevance and freshness of content. For example, if a user searches for "upcoming events in July", Google can use this module to identify and prioritize content that specifically mentions dates in July. This could also help Google to filter out outdated or irrelevant content.
  • To be more favorable for this function, a website could ensure that it provides accurate and structured date and time information in its content. This could include using standardized formats for dates and times, such as ISO 8601, and providing explicit information about time zones. Additionally, websites could use schema markup to explicitly identify dates and times mentioned in their content, making it easier for Google to understand and process this information.

Interesting Module? Vote 👇

Voting helps other researchers find interesting modules.

Current Votes: 0

GoogleApi.ContentWarehouse.V1.Model.KnowledgeGraphDateTimeProto (google_api_content_warehouse v0.4.0)

Attributes

  • days (type: integer(), default: nil) - A day of month, 1-31. If present, year and month must be present as well, and must form a valid date.
  • hours (type: integer(), default: nil) - Hour of the day, 0-23
  • microseconds (type: integer(), default: nil) - Microsecond, in the interval [0, 999999]. If present, seconds have to be present as well.
  • minutes (type: integer(), default: nil) - Minute, 0-59. If present, hours have to be present as well.
  • months (type: integer(), default: nil) - A month, 1-12. If present, year must be present as well.
  • seconds (type: integer(), default: nil) - Second, in the interval [0, 60], where 60 is an exceptional value reserved for leap seconds. If present, minutes have to be present as well.
  • tzOffset (type: String.t, default: nil) - Timezone offset in seconds (can be positive/negative). If present, hours have to be present as well If absent, we expect the time above to be in local time (a.k.a. civil time, go/httat#civil_time).
  • years (type: integer(), default: nil) - A year.

Summary

Types

t()

Functions

decode(value, options)

Unwrap a decoded JSON object into its complex fields.

Types

Link to this type

t()

@type t() :: %GoogleApi.ContentWarehouse.V1.Model.KnowledgeGraphDateTimeProto{
  days: integer() | nil,
  hours: integer() | nil,
  microseconds: integer() | nil,
  minutes: integer() | nil,
  months: integer() | nil,
  seconds: integer() | nil,
  tzOffset: String.t() | nil,
  years: integer() | nil
}

Functions

Link to this function

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.