Maintainer

Information about a bundle maintainer

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
name string Name of the maintainer
email string Email address of the maintainer
url string URL for the maintainer
View JSON Schema on GitHub

JSON Schema

application-research-maintainer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Maintainer",
  "title": "Maintainer",
  "type": "object",
  "description": "Information about a bundle maintainer",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the maintainer"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the maintainer"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL for the maintainer"
    }
  }
}