Generated Release Notes Content

Generated name and body describing a release

APIs.ioEngineeringPlatform

Properties

Name Type Description
name string The generated name of the release
body string The generated body describing the contents of the release supporting markdown formatting
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-release-notes-content-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/release-notes-content",
  "title": "Generated Release Notes Content",
  "description": "Generated name and body describing a release",
  "type": "object",
  "properties": {
    "name": {
      "description": "The generated name of the release",
      "type": "string",
      "example": "Release v1.0.0 is now available!"
    },
    "body": {
      "description": "The generated body describing the contents of the release supporting markdown formatting",
      "type": "string"
    }
  },
  "required": [
    "name",
    "body"
  ]
}