AYLIEN · Schema

ClassificationCategory

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
confident boolean Are we confident enough?
score object
label string Detected label
id number
links array
View JSON Schema on GitHub

JSON Schema

text-api-ClassificationCategory.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ClassificationCategory",
  "type": "object",
  "properties": {
    "confident": {
      "type": "boolean",
      "description": "Are we confident enough?"
    },
    "score": {
      "$ref": "#/definitions/GenericConfidence"
    },
    "label": {
      "type": "string",
      "description": "Detected label"
    },
    "id": {
      "type": "number",
      "format": "int"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "Category link",
        "properties": {
          "rel": {
            "type": "string",
            "description": "Relation, see https://html.spec.whatwg.org/multipage/semantics.html#attr-link-rel"
          },
          "link": {
            "type": "string",
            "description": "Link URL"
          }
        }
      }
    }
  }
}