IBM WebSphere · Schema
ConfigResource
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Resource identifier |
| type | string | Resource type |
| name | string | Resource display name |
| attributes | object | Resource attributes |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConfigResource",
"title": "ConfigResource",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Resource identifier",
"example": "abc123"
},
"type": {
"type": "string",
"description": "Resource type",
"example": "example_value"
},
"name": {
"type": "string",
"description": "Resource display name",
"example": "Example Title"
},
"attributes": {
"type": "object",
"additionalProperties": true,
"description": "Resource attributes",
"example": "example_value"
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rel": {
"type": "string"
},
"href": {
"type": "string",
"format": "uri"
}
}
},
"example": []
}
}
}