Capability Definition

Link and categorization of a machine-readable capability definition

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type string
customType object
mediaType string
url string
accessStrategies array
View JSON Schema on GitHub

JSON Schema

application-research-capabilitydefinition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CapabilityDefinition",
  "title": "Capability Definition",
  "type": "object",
  "description": "Link and categorization of a machine-readable capability definition",
  "required": [
    "type",
    "mediaType",
    "url"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "sap.mdo:mdi-capability-definition:v1",
        "custom"
      ]
    },
    "customType": {
      "$ref": "#/components/schemas/SpecificationId"
    },
    "mediaType": {
      "type": "string",
      "enum": [
        "application/json",
        "application/xml",
        "text/yaml",
        "text/plain",
        "application/octet-stream"
      ]
    },
    "url": {
      "type": "string",
      "format": "uri-reference"
    },
    "accessStrategies": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/AccessStrategy"
      }
    }
  }
}