Hugging Face · JSON Structure

Hugging Face Inference Question Answering Response Structure

Type: object Properties: 4

QuestionAnsweringResponse is a JSON Structure definition published by Hugging Face, describing 4 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

answer score start end

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "QuestionAnsweringResponse",
  "type": "object",
  "properties": {
    "answer": {
      "type": "string"
    },
    "score": {
      "type": "number"
    },
    "start": {
      "type": "integer"
    },
    "end": {
      "type": "integer"
    }
  }
}