{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "insights/v1/events/honeybadger-elixir/absinthe.resolve.field.stop.json",
  "title": "Absinthe: resolve field stop",
  "description": "An Absinthe field resolver finished. Enable this in insights_config telemetry_events. This can create a lot of events.",
  "x-hb": {
    "notifiers": [
      "honeybadger-elixir"
    ],
    "category": "graphql",
    "component": "Absinthe"
  },
  "type": "object",
  "properties": {
    "event_type": {
      "type": "string",
      "const": "absinthe.resolve.field.stop"
    },
    "field_name": {
      "type": "string",
      "description": "The field being resolved.",
      "examples": [
        "user"
      ]
    },
    "parent_type": {
      "type": "string",
      "description": "The parent type containing the field.",
      "examples": [
        "RootQueryType"
      ]
    },
    "state": {
      "type": "string",
      "description": "Resolution state, e.g. \"resolved\", \"unresolved\".",
      "examples": [
        "resolved"
      ]
    },
    "duration": {
      "type": "number",
      "description": "Field resolution duration in microseconds.",
      "examples": [
        1800
      ]
    },
    "request_id": {
      "type": "string",
      "description": "Request ID from the current EventContext.",
      "examples": [
        "F8ZBOg1zcBQDqDgAAADx"
      ]
    }
  },
  "required": [
    "event_type",
    "field_name",
    "parent_type"
  ]
}
