Salesforce · JSON Structure

Salesforce Uiapi7 Structure

Type: object Properties: 1 Required: 1
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Uiapi7 is a JSON Structure definition published by Salesforce, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

query

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Uiapi7",
  "properties": {
    "query": {
      "type": "object",
      "properties": {
        "Opportunity": {
          "type": "object",
          "properties": {
            "edges": {
              "type": "array",
              "description": "",
              "items": {
                "type": "object",
                "properties": {
                  "node": {
                    "type": "object",
                    "properties": {
                      "Id": {
                        "type": "object"
                      },
                      "Name": {
                        "type": "object"
                      },
                      "StageName": {
                        "type": "object"
                      },
                      "CloseDate": {
                        "type": "object"
                      },
                      "Description": {
                        "type": "object"
                      }
                    },
                    "required": [
                      "Id",
                      "Name",
                      "StageName",
                      "CloseDate",
                      "Description"
                    ]
                  }
                },
                "required": [
                  "node"
                ]
              }
            }
          },
          "required": [
            "edges"
          ]
        }
      },
      "required": [
        "Opportunity"
      ]
    }
  },
  "required": [
    "query"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}