DiseaseModelResponse

dermatology-apiai-dermatologymedical-imagingtelemedicineskin-analysisrest-apiopenapillms-txtce-markedwhite-labelhealthcaremedical-aicomputer-visionmedical-deviceicd-10image-classificationclinical-decision-supporttriage

Properties

Name Type Description
predictions array List of disease predictions
skin_tone object Fitzpatrick skin type classification
View JSON Schema on GitHub

JSON Schema

autoderm-ai-dermatology-api-DiseaseModelResponse.json Raw ↑
{
  "properties": {
    "predictions": {
      "items": {
        "$ref": "DiseasePrediction.json"
      },
      "type": "array",
      "title": "Predictions",
      "description": "List of disease predictions"
    },
    "skin_tone": {
      "anyOf": [
        {
          "$ref": "SkinToneModelResponse.json"
        },
        {
          "type": "null"
        }
      ],
      "description": "Fitzpatrick skin type classification"
    }
  },
  "type": "object",
  "required": [
    "predictions"
  ],
  "title": "DiseaseModelResponse",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.autoderm.ai/schemas/DiseaseModelResponse.json"
}