Changelog Entry

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
version string
releaseStatus object
date string
description string
url string
View JSON Schema on GitHub

JSON Schema

application-research-changelogentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangelogEntry",
  "title": "Changelog Entry",
  "type": "object",
  "required": [
    "version",
    "releaseStatus",
    "date"
  ],
  "properties": {
    "version": {
      "type": "string",
      "minLength": 1
    },
    "releaseStatus": {
      "$ref": "#/components/schemas/ReleaseStatus"
    },
    "date": {
      "type": "string",
      "format": "date"
    },
    "description": {
      "type": "string",
      "minLength": 1
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}