fauna · Schema

SchemaUpdateResponse

Properties

Name Type Description
version integer New schema version timestamp after the update.
diff string Diff between the previous and updated schema.
View JSON Schema on GitHub

JSON Schema

fauna-schemaupdateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaUpdateResponse",
  "title": "SchemaUpdateResponse",
  "type": "object",
  "properties": {
    "version": {
      "type": "integer",
      "format": "int64",
      "description": "New schema version timestamp after the update."
    },
    "diff": {
      "type": "string",
      "description": "Diff between the previous and updated schema."
    }
  }
}