Properties
| Name | Type | Description |
|---|---|---|
| customPolicies | array | This array contains the custom policies that match the input criteria. |
| href | string | This field is for future use. |
| limit | integer | This field is for future use. |
| next | string | This field is for future use. |
| offset | integer | This field is for future use. |
| prev | string | This field is for future use. |
| total | integer | This field is for future use. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomPolicyResponse",
"title": "CustomPolicyResponse",
"type": "object",
"properties": {
"customPolicies": {
"type": "array",
"description": "This array contains the custom policies that match the input criteria.",
"items": {
"$ref": "#/components/schemas/CompactCustomPolicyResponse"
}
},
"href": {
"type": "string",
"description": "<i>This field is for future use.</i>"
},
"limit": {
"type": "integer",
"description": "<i>This field is for future use.</i>",
"format": "int32"
},
"next": {
"type": "string",
"description": "<i>This field is for future use.</i>"
},
"offset": {
"type": "integer",
"description": "<i>This field is for future use.</i>",
"format": "int32"
},
"prev": {
"type": "string",
"description": "<i>This field is for future use.</i>"
},
"total": {
"type": "integer",
"description": "<i>This field is for future use.</i>",
"format": "int32"
}
}
}