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