Unified.to · Schema

MetadataMetadata

IntegrationsUnified API

Properties

Name Type Description
created_at string
format string
id string
is_required boolean
name string
object_type string
objects object
options object
original_format string
raw object
slug string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-metadatametadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetadataMetadata",
  "title": "MetadataMetadata",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "format": {
      "enum": [
        "TEXT",
        "NUMBER",
        "DATE",
        "BOOLEAN",
        "FILE",
        "TEXTAREA",
        "SINGLE_SELECT",
        "MULTIPLE_SELECT",
        "MEASUREMENT",
        "PRICE",
        "YES_NO",
        "CURRENCY",
        "URL"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "id": {
      "type": "string"
    },
    "is_required": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "object_type": {
      "type": "string"
    },
    "objects": {
      "$ref": "#/components/schemas/property_MetadataMetadata_objects"
    },
    "options": {
      "$ref": "#/components/schemas/property_MetadataMetadata_options"
    },
    "original_format": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "slug": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "name",
    "object_type"
  ],
  "type": "object"
}