AutoML Model

Schema for a Google Cloud AutoML model resource.

AutoMLCustom ModelsGoogle CloudMachine LearningTraining

Properties

Name Type Description
name string Resource name of the model.
displayName string Human-readable display name for the model.
datasetId string ID of the dataset used to train the model.
createTime string Timestamp when the model was created.
updateTime string Timestamp when the model was last updated.
deploymentState string Deployment state of the model.
etag string Entity tag for optimistic concurrency control.
View JSON Schema on GitHub

JSON Schema

model.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/google-cloud-automl/refs/heads/main/json-schema/model.json",
  "title": "AutoML Model",
  "description": "Schema for a Google Cloud AutoML model resource.",
  "type": "object",
  "required": ["displayName", "datasetId"],
  "properties": {
    "name": {
      "type": "string",
      "description": "Resource name of the model."
    },
    "displayName": {
      "type": "string",
      "description": "Human-readable display name for the model."
    },
    "datasetId": {
      "type": "string",
      "description": "ID of the dataset used to train the model."
    },
    "createTime": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the model was created."
    },
    "updateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the model was last updated."
    },
    "deploymentState": {
      "type": "string",
      "enum": ["DEPLOYMENT_STATE_UNSPECIFIED", "DEPLOYED", "UNDEPLOYED"],
      "description": "Deployment state of the model."
    },
    "etag": {
      "type": "string",
      "description": "Entity tag for optimistic concurrency control."
    }
  }
}