Dataiku · Schema

Service

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
serviceId string Unique service identifier
enabled boolean Whether the service is enabled
activeGeneration string Currently active generation identifier
endpoints array List of endpoints provided by this service
generationCount integer Number of available generations
View JSON Schema on GitHub

JSON Schema

dataiku-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Service",
  "title": "Service",
  "type": "object",
  "properties": {
    "serviceId": {
      "type": "string",
      "description": "Unique service identifier"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the service is enabled"
    },
    "activeGeneration": {
      "type": "string",
      "description": "Currently active generation identifier"
    },
    "endpoints": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Endpoint"
      },
      "description": "List of endpoints provided by this service"
    },
    "generationCount": {
      "type": "integer",
      "description": "Number of available generations"
    }
  }
}