Dataiku · Schema

Endpoint

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
id string Endpoint identifier
type string Endpoint type
modelRef string Reference to the model used by this endpoint
View JSON Schema on GitHub

JSON Schema

dataiku-endpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Endpoint",
  "title": "Endpoint",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Endpoint identifier"
    },
    "type": {
      "type": "string",
      "enum": [
        "STD_PREDICTION",
        "CUSTOM_PREDICTION",
        "R_PREDICTION",
        "CUSTOM_R_PREDICTION",
        "SQL_QUERY",
        "DATASET_LOOKUP",
        "R_FUNCTION",
        "PYTHON_FUNCTION"
      ],
      "description": "Endpoint type"
    },
    "modelRef": {
      "type": "string",
      "description": "Reference to the model used by this endpoint"
    }
  }
}