Veritas NetBackup · Schema
PolicyListResponse
BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage
Properties
| Name | Type | Description |
|---|---|---|
| data | array | |
| meta | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PolicyListResponse",
"title": "PolicyListResponse",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "policy"
},
"id": {
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"policy": {
"type": "object",
"properties": {
"policyName": {
"type": "string"
},
"policyType": {
"type": "string"
},
"policyAttributes": {
"$ref": "#/components/schemas/PolicyAttributes"
}
}
}
}
},
"links": {
"type": "object",
"properties": {
"self": {
"type": "object",
"properties": {
"href": {
"type": "string",
"format": "uri"
}
}
}
}
}
}
},
"example": []
},
"meta": {
"$ref": "#/components/schemas/PaginationMeta"
}
}
}