Douglass.network Schemas

Post view json-view

douglass.network/post-view

Get a post-record.

{
  "id": "douglass.network/post-view",
  "title": "Post view",
  "description": "Get a post-record.",
  "type": "json-view",
  "parameters": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "array",
    "minItems": 1,
    "additionalItems": false,
    "items": [
      {
        "type": "string"
      },
      {
        "type": "string"
      }
    ]
  },
  "definition": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
      "author",
      "key",
      "seq",
      "url",
      "value"
    ],
    "properties": {
      "author": {
        "type": "object",
        "properties": {
          "userId": {
            "type": "string",
            "pattern": ".+@.+"
          },
          "displayName": {
            "type": "string"
          }
        }
      },
      "key": {
        "type": "string"
      },
      "reactions": {
        "type": "object",
        "patternProperties": {
          ".*": {
            "type": "array",
            "items": {
              "type": "string",
              "pattern": ".+@.+"
            }
          }
        }
      },
      "replyCount": {
        "type": "number"
      },
      "relatedItemTransfers": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "dbmethodCall": {
              "type": "object",
              "properties": {
                "authorId": {
                  "type": "string",
                  "pattern": ".+@.+"
                },
                "dbUrl": {
                  "type": "string",
                  "format": "uri"
                }
              }
            },
            "itemClassId": {
              "type": "string"
            },
            "qty": {
              "type": "integer"
            }
          }
        }
      },
      "seq": {
        "type": "number"
      },
      "url": {
        "type": "string",
        "format": "uri"
      },
      "value": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 256
          },
          "media": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "blobs"
              ],
              "properties": {
                "caption": {
                  "type": "string"
                },
                "blobs": {
                  "type": "object",
                  "required": [
                    "original"
                  ],
                  "properties": {
                    "thumb": {
                      "type": "object",
                      "required": [
                        "mimeType",
                        "blobName"
                      ],
                      "properties": {
                        "mimeType": {
                          "type": "string"
                        },
                        "blobName": {
                          "type": "string"
                        }
                      }
                    },
                    "original": {
                      "type": "object",
                      "required": [
                        "mimeType",
                        "blobName"
                      ],
                      "properties": {
                        "mimeType": {
                          "type": "string"
                        },
                        "blobName": {
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "extendedText": {
            "type": "string"
          },
          "extendedTextMimeType": {
            "type": "string"
          },
          "community": {
            "type": "object",
            "required": [
              "dbUrl",
              "userId"
            ],
            "properties": {
              "dbUrl": {
                "type": "string",
                "format": "uri"
              },
              "userId": {
                "type": "string",
                "pattern": ".+@.+"
              }
            }
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          }
        }
      }
    }
  }
}

Schemas