Access Strategy

Defines the access strategy for accessing resource definitions

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type string
customType object
customDescription string
View JSON Schema on GitHub

JSON Schema

application-research-accessstrategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccessStrategy",
  "title": "Access Strategy",
  "type": "object",
  "description": "Defines the access strategy for accessing resource definitions",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "open",
        "basic-auth",
        "custom"
      ]
    },
    "customType": {
      "$ref": "#/components/schemas/SpecificationId"
    },
    "customDescription": {
      "type": "string",
      "minLength": 1
    }
  }
}