{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Resource identifier returned by the operation."
    },
    "projectId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "category": {
      "type": "string",
      "enum": [
        "placements",
        "destinations",
        "competitors",
        "index",
        "renewals"
      ]
    },
    "type": {
      "type": "string"
    },
    "subjectId": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1,
          "maxLength": 200
        },
        {
          "type": "null"
        }
      ]
    },
    "at": {
      "type": "string"
    },
    "state": {
      "anyOf": [
        {
          "type": "string",
          "description": "Saved lifecycle or evidence state, as enumerated for this record."
        },
        {
          "type": "null"
        }
      ],
      "description": "Saved lifecycle or evidence state, as enumerated for this record."
    },
    "sourceUrl": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "targetUrl": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "sourceAvailable": {
      "type": "boolean"
    },
    "expiresOn": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "id",
    "projectId",
    "category",
    "type",
    "subjectId",
    "at",
    "state",
    "sourceUrl",
    "targetUrl",
    "sourceAvailable",
    "expiresOn"
  ],
  "additionalProperties": {}
}
