Oracle Enterprise Manager · Schema
GlobalTargetProperty
A global property definition for classifying targets.
Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle
Properties
| Name | Type | Description |
|---|---|---|
| globalTargetPropertyId | string | Unique identifier for the property. |
| propertyName | string | Name of the property. |
| propertyDisplayName | string | Human-readable display name. |
| description | string | Description of the property. |
| propertyType | string | Data type of the property. |
| hasValidValues | boolean | Whether the property has a constrained value set. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GlobalTargetProperty",
"title": "GlobalTargetProperty",
"type": "object",
"description": "A global property definition for classifying targets.",
"properties": {
"globalTargetPropertyId": {
"type": "string",
"description": "Unique identifier for the property.",
"example": "500123"
},
"propertyName": {
"type": "string",
"description": "Name of the property.",
"example": "example_value"
},
"propertyDisplayName": {
"type": "string",
"description": "Human-readable display name.",
"example": "example_value"
},
"description": {
"type": "string",
"description": "Description of the property.",
"example": "A sample description."
},
"propertyType": {
"type": "string",
"description": "Data type of the property.",
"enum": [
"STRING",
"NUMBER",
"BOOLEAN"
],
"example": "STRING"
},
"hasValidValues": {
"type": "boolean",
"description": "Whether the property has a constrained value set.",
"example": true
}
}
}