Google Forms · JSON Structure

Google Forms Api Form Structure

A Google Form with items, settings, and metadata.

Type: object Properties: 8
Data CollectionFormsGoogleGoogle WorkspaceQuestionnairesResponsesSurveys

Form is a JSON Structure definition published by Google Forms, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

formId info settings items revisionId responderUri linkedSheetId publishSettings

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/google-forms/refs/heads/main/json-structure/google-forms-api-form-structure.json",
  "name": "Form",
  "description": "A Google Form with items, settings, and metadata.",
  "type": "object",
  "properties": {
    "formId": { "type": "string", "description": "Output only. The form ID." },
    "info": {
      "type": "object",
      "properties": {
        "title": { "type": "string" },
        "documentTitle": { "type": "string" },
        "description": { "type": "string" }
      }
    },
    "settings": {
      "type": "object",
      "properties": {
        "quizSettings": { "type": "object", "properties": { "isQuiz": { "type": "boolean" } } },
        "emailCollectionType": { "type": "string" }
      }
    },
    "items": { "type": "array", "items": { "type": "object" } },
    "revisionId": { "type": "string" },
    "responderUri": { "type": "uri" },
    "linkedSheetId": { "type": "string" },
    "publishSettings": {
      "type": "object",
      "properties": {
        "isPublished": { "type": "boolean" },
        "isAcceptingResponses": { "type": "boolean" }
      }
    }
  }
}