Autodesk · Schema
CreateVersionRequest
Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability
Properties
| Name | Type | Description |
|---|---|---|
| jsonapi | object | |
| data | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateVersionRequest",
"title": "CreateVersionRequest",
"type": "object",
"properties": {
"jsonapi": {
"$ref": "#/components/schemas/JsonApiVersion"
},
"data": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "versions"
},
"attributes": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"extension": {
"$ref": "#/components/schemas/Extension"
}
}
},
"relationships": {
"type": "object",
"properties": {
"item": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "items"
},
"id": {
"type": "string"
}
}
}
}
},
"storage": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "objects"
},
"id": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}