Fastly · Schema

Dictionary

A dictionary container that holds key-value pairs accessible at the Fastly edge for use in VCL or Compute services.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string The alphanumeric string identifying the dictionary.
name string The name of the dictionary.
service_id string The alphanumeric string identifying the service.
version integer The version number the dictionary is associated with.
write_only boolean Whether the dictionary is write-only.
created_at string The date and time the dictionary was created.
updated_at string The date and time the dictionary was last updated.
deleted_at string The date and time the dictionary was deleted.
View JSON Schema on GitHub

JSON Schema

fastly-dictionary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dictionary",
  "title": "Dictionary",
  "type": "object",
  "description": "A dictionary container that holds key-value pairs accessible at the Fastly edge for use in VCL or Compute services.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alphanumeric string identifying the dictionary."
    },
    "name": {
      "type": "string",
      "description": "The name of the dictionary."
    },
    "service_id": {
      "type": "string",
      "description": "The alphanumeric string identifying the service."
    },
    "version": {
      "type": "integer",
      "description": "The version number the dictionary is associated with."
    },
    "write_only": {
      "type": "boolean",
      "description": "Whether the dictionary is write-only."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the dictionary was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the dictionary was last updated."
    },
    "deleted_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "The date and time the dictionary was deleted."
    }
  }
}