New Relic · Schema

DeploymentResponseType

DeploymentResponseType schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
changelog string
description string
id integer
links object
revision string
timestamp string
user string
View JSON Schema on GitHub

JSON Schema

openapi-deployment-response-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/openapi-deployment-response-type-schema.json",
  "title": "DeploymentResponseType",
  "description": "DeploymentResponseType schema",
  "type": "object",
  "properties": {
    "changelog": {
      "type": "string",
      "example": "example_string"
    },
    "description": {
      "type": "string",
      "example": "example_string"
    },
    "id": {
      "type": "integer",
      "example": 100
    },
    "links": {
      "$ref": "#/components/schemas/DeploymentLinksResponse"
    },
    "revision": {
      "type": "string",
      "example": "example_string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "example": "2026-04-18T14:30:00Z"
    },
    "user": {
      "type": "string",
      "example": "example_string"
    }
  }
}