OBJECT

AssetAttachment

A single asset attachment

link GraphQL Schema definition

  • type AssetAttachment {
  • # The unique ID.
  • id: Int!
  • # Attachment's name.
  • name: String!
  • # Attachment's long description.
  • description: String
  • # The asset's registration number.
  • registration_number: String
  • # True if the asset is active, false if it's archived.
  • is_active: Boolean!
  • # The user that last modified this asset.
  • modified_by: User
  • # The time this asset was last modified.
  • modified_time: DateTime
  • # The attachment's properties
  • properties: AssetProperties
  • # Any additional description comments.
  • comments: String
  • # An ID used to link this asset to an external application.
  • external_id: String
  • # The related documents.
  • documents: [AssetAttachmentDocument]
  • # The categorisation tags on the asset attachment.
  • tags: [Tag]
  • }