Fastly · Schema

Domain

A domain associated with a Fastly service, serving as the entry point for traffic routed through Fastly's edge network.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
name string The domain name.
comment string A freeform descriptive note about the domain.
service_id string The alphanumeric string identifying the service.
version integer The version number the domain is associated with.
created_at string The date and time the domain was created.
updated_at string The date and time the domain was last updated.
deleted_at string The date and time the domain was deleted.
View JSON Schema on GitHub

JSON Schema

fastly-domain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Domain",
  "title": "Domain",
  "type": "object",
  "description": "A domain associated with a Fastly service, serving as the entry point for traffic routed through Fastly's edge network.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The domain name."
    },
    "comment": {
      "type": "string",
      "description": "A freeform descriptive note about the domain."
    },
    "service_id": {
      "type": "string",
      "description": "The alphanumeric string identifying the service."
    },
    "version": {
      "type": "integer",
      "description": "The version number the domain is associated with."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the domain was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the domain was last updated."
    },
    "deleted_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "The date and time the domain was deleted."
    }
  }
}