Sanity · Schema

Project

Headless CMSContent ManagementGROQReal-TimeStructured ContentDeveloper Platform

Properties

Name Type Description
id string Unique project ID
displayName string
organizationId string
isBlocked boolean
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

sanity-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique project ID"
    },
    "displayName": {
      "type": "string"
    },
    "organizationId": {
      "type": "string"
    },
    "isBlocked": {
      "type": "boolean"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}