Akamai · Schema
prefetch-request-put-200
The PUT Response JSON for Prefetch Requests.
CDNCloudEdge ComputingNetworksPlatformSecurity
Properties
| Name | Type | Description |
|---|---|---|
| allExtensions | boolean | Whether to enable prefetch requests for all extensions. |
| enableAppLayer | boolean | Whether to enable Prefetch Requests. |
| enableRateControls | boolean | Whether to enable Prefetch Requests for rate controls. |
| extensions | array | List of extensions. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/prefetch-request-put-200",
"title": "prefetch-request-put-200",
"additionalProperties": false,
"description": "The PUT Response JSON for Prefetch Requests.",
"properties": {
"allExtensions": {
"description": "Whether to enable prefetch requests for all extensions.",
"type": "boolean"
},
"enableAppLayer": {
"description": "Whether to enable Prefetch Requests.",
"type": "boolean"
},
"enableRateControls": {
"description": "Whether to enable Prefetch Requests for rate controls.",
"type": "boolean"
},
"extensions": {
"description": "List of extensions.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"allExtensions",
"enableAppLayer",
"enableRateControls"
],
"type": "object",
"x-akamai": {
"file-path": "schemas/prefetch-request-put-200.yaml"
}
}