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.
{
"$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."
}
}
}