Microsoft Graph · Schema

autonomousSystem

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
name string The name of the autonomous system.
number number The autonomous system number, assigned by IANA.
organization string The name of the autonomous system organization.
value string A displayable value for these autonomous system details.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityautonomoussystem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.autonomousSystem",
  "title": "autonomousSystem",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the autonomous system."
    },
    "number": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The autonomous system number, assigned by IANA.",
      "format": "int32"
    },
    "organization": {
      "type": "string",
      "description": "The name of the autonomous system organization."
    },
    "value": {
      "type": "string",
      "description": "A displayable value for these autonomous system details."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}