io.whiteley.ATlas.pin

luke.whiteley.io

Documentation

A user's geographical pin on the atlas

main record

A user's geographical pin on the atlas

Record Key literal:self Fixed literal value

Properties

description string Required

No description available.

maxLength: 256 bytes
did string did Required

A decentralized identifier (DID).

latitude string Required

No description available.

maxLength: 32 bytes
longitude string Required

No description available.

maxLength: 32 bytes
placedAt string datetime Required

An RFC 3339 formatted timestamp.

website string Optional

No description available.

maxLength: 256 bytes
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "did",
      "longitude",
      "latitude",
      "description",
      "placedAt"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      },
      "website": {
        "type": "string",
        "$comment": "User-submitted website",
        "maxLength": 256
      },
      "latitude": {
        "type": "string",
        "$comment": "Latitude as per WGS84 (EPSG:4326)",
        "maxLength": 32
      },
      "placedAt": {
        "type": "string",
        "format": "datetime"
      },
      "longitude": {
        "type": "string",
        "$comment": "Longitude as per WGS84 (EPSG:4326)",
        "maxLength": 32
      },
      "description": {
        "type": "string",
        "$comment": "Pin description (as submitted by the user)",
        "maxLength": 256
      }
    }
  },
  "description": "A user's geographical pin on the atlas"
}

Lexicon Garden

@