Fastly · Schema

ProductStatus

The enablement status of a Fastly product on a service.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
product object Details about the product.
service object Details about the service.
_links object Links to related resources.
View JSON Schema on GitHub

JSON Schema

fastly-productstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductStatus",
  "title": "ProductStatus",
  "type": "object",
  "description": "The enablement status of a Fastly product on a service.",
  "properties": {
    "product": {
      "type": "object",
      "description": "Details about the product.",
      "properties": {
        "id": {
          "type": "string",
          "description": "The product identifier."
        },
        "object": {
          "type": "string",
          "description": "The resource type."
        }
      }
    },
    "service": {
      "type": "object",
      "description": "Details about the service.",
      "properties": {
        "id": {
          "type": "string",
          "description": "The alphanumeric string identifying the service."
        },
        "object": {
          "type": "string",
          "description": "The resource type."
        }
      }
    },
    "_links": {
      "type": "object",
      "description": "Links to related resources.",
      "properties": {
        "self": {
          "type": "string",
          "description": "A link to the current resource."
        },
        "service": {
          "type": "string",
          "description": "A link to the associated service."
        }
      }
    }
  }
}