Fastly · Schema

Fastly Dictionary Item

A single key-value pair within a Fastly edge dictionary. Dictionary items are versionless and can be updated without requiring a new service version. Updates are available at the edge within approximately 30 seconds.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
dictionary_id string The alphanumeric string identifying the parent dictionary.
service_id string The alphanumeric string identifying the service.
item_key string The key of the dictionary item.
item_value string The value of the dictionary item.
created_at string The date and time the item was created.
updated_at string The date and time the item was last updated.
deleted_at stringnull The date and time the item was deleted.
View JSON Schema on GitHub

JSON Schema

fastly-dictionary-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/fastly/dictionary-item.json",
  "title": "Fastly Dictionary Item",
  "description": "A single key-value pair within a Fastly edge dictionary. Dictionary items are versionless and can be updated without requiring a new service version. Updates are available at the edge within approximately 30 seconds.",
  "type": "object",
  "required": ["item_key", "item_value"],
  "properties": {
    "dictionary_id": {
      "type": "string",
      "description": "The alphanumeric string identifying the parent dictionary."
    },
    "service_id": {
      "type": "string",
      "description": "The alphanumeric string identifying the service."
    },
    "item_key": {
      "type": "string",
      "description": "The key of the dictionary item.",
      "minLength": 1,
      "maxLength": 256
    },
    "item_value": {
      "type": "string",
      "description": "The value of the dictionary item.",
      "maxLength": 8000
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the item was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the item was last updated."
    },
    "deleted_at": {
      "type": ["string", "null"],
      "format": "date-time",
      "description": "The date and time the item was deleted."
    }
  }
}