Asana · Schema

AttachmentCompact

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string
resource_type string
name string The name of the file.
resource_subtype string The service hosting the attachment.
View JSON Schema on GitHub

JSON Schema

asana-attachmentcompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentCompact",
  "title": "AttachmentCompact",
  "type": "object",
  "properties": {
    "gid": {
      "type": "string",
      "readOnly": true,
      "example": "12345"
    },
    "resource_type": {
      "type": "string",
      "readOnly": true,
      "example": "attachment"
    },
    "name": {
      "type": "string",
      "description": "The name of the file.",
      "example": "Screenshot.png"
    },
    "resource_subtype": {
      "type": "string",
      "description": "The service hosting the attachment.",
      "example": "dropbox"
    }
  }
}