Blues · Schema

Project

IoTCellularConnectivityDevice ManagementFleet ManagementSatelliteLoRaWiFiNotecardNotehub

Properties

Name Type Description
administrative_contact object
created string
label string
role object
technical_contact object
uid string
View JSON Schema on GitHub

JSON Schema

blues-wireless-project.json Raw ↑
{
  "type": "object",
  "properties": {
    "administrative_contact": {
      "$ref": "#/components/schemas/Contact"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "label": {
      "type": "string"
    },
    "role": {
      "$ref": "#/components/schemas/Role"
    },
    "technical_contact": {
      "$ref": "#/components/schemas/Contact"
    },
    "uid": {
      "type": "string"
    }
  },
  "required": [
    "uid",
    "label",
    "created"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Project"
}