Asana · Schema

Like

An object to represent a user's like.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string Globally unique identifier of the object, as a string.
user object
View JSON Schema on GitHub

JSON Schema

asana-like-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Like",
  "title": "Like",
  "type": "object",
  "description": "An object to represent a user's like.",
  "properties": {
    "gid": {
      "description": "Globally unique identifier of the object, as a string.",
      "type": "string",
      "readOnly": true,
      "example": "12345"
    },
    "user": {
      "$ref": "#/components/schemas/UserCompact"
    }
  }
}