Event Resource Integration Aspect

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
ordId string
minVersion object
subset array
systemTypeRestriction array
View JSON Schema on GitHub

JSON Schema

application-research-eventresourceintegrationaspect-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventResourceIntegrationAspect",
  "title": "Event Resource Integration Aspect",
  "type": "object",
  "required": [
    "ordId"
  ],
  "properties": {
    "ordId": {
      "type": "string",
      "pattern": "^([a-z0-9]+(?:[.][a-z0-9]+)*):(eventResource):([a-zA-Z0-9._\\-]+):(v0|v[1-9][0-9]*)$",
      "maxLength": 255
    },
    "minVersion": {
      "$ref": "#/components/schemas/SemVer"
    },
    "subset": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventResourceIntegrationAspectSubset"
      }
    },
    "systemTypeRestriction": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "string",
        "pattern": "^[a-z0-9]+(?:[.][a-z0-9]+){1}$"
      }
    }
  }
}