Application Research · Schema
Resource
Component resource
Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications
Properties
| Name | Type | Description |
|---|---|---|
| name | object | |
| type | string | Resource type |
| extraIdentity | object | |
| version | object | |
| relation | string | |
| labels | object | |
| srcRefs | array | |
| access | object | |
| input | object | |
| digest | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Resource",
"title": "Resource",
"type": "object",
"description": "Component resource",
"required": [
"name",
"type"
],
"properties": {
"name": {
"$ref": "#/components/schemas/ElementName"
},
"type": {
"type": "string",
"description": "Resource type",
"examples": [
"ociImage",
"helmChart",
"json",
"directory"
]
},
"extraIdentity": {
"$ref": "#/components/schemas/IdentityAttribute"
},
"version": {
"$ref": "#/components/schemas/Version"
},
"relation": {
"type": "string",
"enum": [
"local",
"external"
],
"default": "external"
},
"labels": {
"$ref": "#/components/schemas/Labels"
},
"srcRefs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SrcRef"
}
},
"access": {
"$ref": "#/components/schemas/Access"
},
"input": {
"$ref": "#/components/schemas/Input"
},
"digest": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/DigestSpec"
}
]
}
}
}