Amazon Monitron · JSON Structure

Monitron Api Project Structure

Represents a Monitron project.

Type: object Properties: 5
BroadcastingMedia ProcessingMedia

Project is a JSON Structure definition published by Amazon Monitron, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

createdAt projectArn projectName status updatedAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-monitron/refs/heads/main/json-structure/monitron-api-project-structure.json",
  "name": "Project",
  "type": "object",
  "description": "Represents a Monitron project.",
  "properties": {
    "createdAt": {
      "type": "datetime",
      "description": "The time at which the project was created."
    },
    "projectArn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the project."
    },
    "projectName": {
      "type": "string",
      "description": "The name of the project."
    },
    "status": {
      "type": "string",
      "description": "The current status of the project.",
      "enum": [
        "ACTIVE",
        "DELETING"
      ]
    },
    "updatedAt": {
      "type": "datetime",
      "description": "The time at which the project was last updated."
    }
  }
}