Autodesk · Schema

CreateCompanyRequest

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
name string
trade string
addressLine1 string
city string
stateOrProvince string
postalCode string
country string
phone string
websiteUrl string
description string
View JSON Schema on GitHub

JSON Schema

autodesk-createcompanyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCompanyRequest",
  "title": "CreateCompanyRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "trade": {
      "type": "string"
    },
    "addressLine1": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "stateOrProvince": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "websiteUrl": {
      "type": "string",
      "format": "uri"
    },
    "description": {
      "type": "string"
    }
  }
}