OBJECT

Asset

An Asset

link GraphQL Schema definition

  • type Asset {
  • # Unique asset ID.
  • id: Int!
  • # The machines's display name.
  • name: String!
  • # A long description of the machine.
  • 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 time this asset was deleted.
  • deleted_at: DateTime
  • # The asset's properties
  • properties: AssetProperties
  • # An ID used to link this asset to an external application.
  • external_id: String
  • # Total number of expired documents the asset has.
  • expired_documents_count: Int!
  • # The related documents.
  • documents: [AssetDocument]
  • # The categorisation tags on the asset.
  • tags: [Tag]
  • # Form results attached to this asset.
  • linked_form_results: [FormResult]
  • # The asset attachments linked to this asset.
  • asset_attachments: [AssetAttachment]
  • # The skills associated with this asset.
  • skills: [Skill]
  • # Users that have been linked with this asset.
  • workers: [User]
  • # An asset's suppliers
  • suppliers: [Supplier]
  • # The number_reading of the asset
  • number_reading: String
  • # Profile image of the asset.
  • profile_image: String
  • }