Orbit · Schema

Destination

Orbit destination schema

Developer RelationsCommunity IntelligenceDevRelCommunity ManagementMember TrackingCommunity AnalyticsOpen SourceDeveloper Engagement

Properties

Name Type Description
name string
url string
alerts array
View JSON Schema on GitHub

JSON Schema

orbit-destination.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://orbit.love/schemas/destination.json",
  "title": "Destination",
  "description": "Orbit destination schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "alerts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/alert"
      }
    }
  },
  "required": [
    "name",
    "url"
  ]
}