Ampersand · JSON Structure

Ampersand Api Upsert Metadata Response Structure

Response containing results for all created/updated fields

Type: object Properties: 2 Required: 2
Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

UpsertMetadataResponse is a JSON Structure definition published by Ampersand, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

success fields

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/ampersand/refs/heads/main/json-structure/ampersand-api-upsert-metadata-response-structure.json",
  "name": "UpsertMetadataResponse",
  "description": "Response containing results for all created/updated fields",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Indicates if the upsert operation was successful"
    },
    "fields": {
      "type": "object",
      "description": "Maps object name -> field name -> upsert result",
      "additionalProperties": {
        "type": "object",
        "additionalProperties": {
          "$ref": "#/components/schemas/FieldUpsertResult"
        }
      }
    }
  },
  "required": [
    "success",
    "fields"
  ]
}