Properties
| Name | Type | Description |
|---|---|---|
| description | string | Description of entitlement. |
| title | string | Entitlement or metric name |
| type | string | Type of entitlement |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Entitlement",
"title": "Entitlement",
"type": "object",
"required": [
"type",
"title",
"description"
],
"properties": {
"description": {
"type": "string",
"description": "Description of entitlement.",
"example": "An example description"
},
"title": {
"type": "string",
"description": "Entitlement or metric name",
"example": "example_value"
},
"type": {
"type": "string",
"description": "Type of entitlement",
"enum": [
"array",
"boolean",
"integer",
"number",
"string"
],
"example": "array"
}
}
}