Douglass.network Schemas

Reactions to view json-view

douglass.network/reactions-to-view

Get the reaction-records for a given subject.

{
  "id": "douglass.network/reactions-to-view",
  "title": "Reactions to view",
  "description": "Get the reaction-records for a given subject.",
  "type": "json-view",
  "parameters": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "array",
    "minItems": 1,
    "additionalItems": false,
    "items": [
      {
        "type": "string",
        "format": "uri"
      }
    ]
  },
  "definition": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
      "subject",
      "reactions"
    ],
    "properties": {
      "subject": {
        "type": "object",
        "required": [
          "dbUrl"
        ],
        "properties": {
          "dbUrl": {
            "type": "string",
            "format": "uri"
          }
        }
      },
      "reactions": {
        "type": "object",
        "patternProperties": {
          ".*": {
            "type": "array",
            "items": {
              "type": "string",
              "pattern": ".+@.+"
            }
          }
        }
      }
    }
  }
}

Schemas