Cloudflare · Schema

Project

AI GatewayAPI GatewayArtificial IntelligenceCDNCloudContainersDDoS ProtectionDNSEdgeEdge ComputingObject StoragePlatformReal-Time CommunicationSecurityServerlessWeb Performance

Properties

Name Type Description
id string The unique identifier of the project.
name string The name of the project.
subdomain string The subdomain for the project.
domains array Custom domains attached to the project.
production_branch string The production branch name.
created_on string When the project was created.
build_config object
View JSON Schema on GitHub

JSON Schema

cloudflare-pages-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the project."
    },
    "name": {
      "type": "string",
      "description": "The name of the project."
    },
    "subdomain": {
      "type": "string",
      "description": "The subdomain for the project."
    },
    "domains": {
      "type": "array",
      "description": "Custom domains attached to the project."
    },
    "production_branch": {
      "type": "string",
      "description": "The production branch name."
    },
    "created_on": {
      "type": "string",
      "description": "When the project was created."
    },
    "build_config": {
      "type": "object"
    }
  }
}