Signature

Component signature

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
name string Signature name/identifier
digest object
signature object
View JSON Schema on GitHub

JSON Schema

application-research-signature-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Signature",
  "title": "Signature",
  "type": "object",
  "description": "Component signature",
  "required": [
    "name",
    "signature"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Signature name/identifier"
    },
    "digest": {
      "$ref": "#/components/schemas/DigestSpec"
    },
    "signature": {
      "$ref": "#/components/schemas/SignatureSpec"
    }
  }
}