Label

A label with name-value pair

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
name string Label name
value object
version string
signing boolean Whether this label should be included in signing
merge object
View JSON Schema on GitHub

JSON Schema

application-research-label-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Label",
  "title": "Label",
  "type": "object",
  "description": "A label with name-value pair",
  "required": [
    "name",
    "value"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Label name"
    },
    "value": {},
    "version": {
      "type": "string",
      "pattern": "^v[0-9]+$"
    },
    "signing": {
      "type": "boolean",
      "description": "Whether this label should be included in signing"
    },
    "merge": {
      "$ref": "#/components/schemas/Merge"
    }
  }
}