ObjectAnnotation

open_in_new

@beta This field is part of a limited access beta.

GraphQL Schema definition

  • type ObjectAnnotation implements Annotation, LayeredElement {
  • id: ID!
  • created: DateTime!
  • modified: DateTime!
  • model: Model
  • layer: ModelLayer
  • # The source for the ObjectAnnotation. For vision generated objects, an
  • # InferenceEvent. For user generated objects, UserMetadata.
  • source: ObjectAnnotationSource!
  • # The floor the ObjectAnnotation is on.
  • floor: ModelFloor
  • # The room the ObjectAnnotation is located in.
  • room: ModelRoom
  • # Whether or not this annotation should
  • # be shown in public views.
  • enabled: Boolean!
  • # A short label describing the object.
  • label: String
  • # The confidence score for the object's detection.
  • confidence: Float
  • # The panoramic images which contributed to the object detection.
  • panos: [PanoramicImageLocation!]
  • # The ObjectAnnotation's position and stem suggestions.
  • # For detections, the centroid of the object.
  • region: Region
  • # The Mattertag associated with this ObjectAnnotation
  • tag: Mattertag
  • # Keywords associated with this ObjectAnnotation.
  • keywords: [String!]
  • # The object annotation's classification.
  • classification: ObjectClassification
  • }