app.openmkt.marketplace.listing

openmkt.app

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

category string Required

No description available.

condition string Optional

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 3000 bytes
externalUrl string Optional

Optional external URL for purchasing the item (e.g., Amazon, eBay link)

maxLength: 2000 bytes
hideFromFriends boolean Optional

No description available.

images array of blob Optional

No description available.

location ref #locationObj Required

No description available.

metadata ref #metadataObj Optional

No description available.

price string Required

String representation

title string Required

No description available.

maxLength: 300 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "price",
      "category",
      "location",
      "createdAt"
    ],
    "properties": {
      "price": {
        "type": "string",
        "description": "String representation"
      },
      "title": {
        "type": "string",
        "maxLength": 300
      },
      "images": {
        "type": "array",
        "items": {
          "type": "blob",
          "accept": [
            "image/*"
          ],
          "maxSize": 1000000
        }
      },
      "category": {
        "type": "string"
      },
      "location": {
        "ref": "#locationObj",
        "type": "ref"
      },
      "metadata": {
        "ref": "#metadataObj",
        "type": "ref"
      },
      "condition": {
        "type": "string"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 3000
      },
      "externalUrl": {
        "type": "string",
        "maxLength": 2000,
        "description": "Optional external URL for purchasing the item (e.g., Amazon, eBay link)"
      },
      "hideFromFriends": {
        "type": "boolean"
      }
    }
  }
}
locationObj object

No description available.

Properties

county string Optional

No description available.

locality string Optional

No description available.

state string Optional

No description available.

zipPrefix string Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "state": {
      "type": "string"
    },
    "county": {
      "type": "string"
    },
    "locality": {
      "type": "string"
    },
    "zipPrefix": {
      "type": "string"
    }
  }
}
metadataObj object

No description available.

Properties

subcategory string Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "subcategory": {
      "type": "string"
    }
  }
}

Lexicon Garden

@