Microsoft Dynamics · Schema
Item
An inventory item in Microsoft Dynamics 365, representing a product or service that can be bought or sold.
CRMERPMicrosoft Dynamics
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the item. |
| number | string | The item number. |
| displayName | string | The display name of the item. |
| type | string | The type of item. |
| itemCategoryCode | string | The category code for the item. |
| blocked | boolean | Indicates whether the item is blocked. |
| gtin | string | The Global Trade Item Number (barcode). |
| unitPrice | number | The unit sales price of the item. |
| unitCost | number | The unit cost of the item. |
| inventory | number | The current inventory quantity. |
| taxGroupCode | string | The tax group code for the item. |
| baseUnitOfMeasureCode | string | The base unit of measure code. |
| lastModifiedDateTime | string | The date and time the record was last modified. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-dynamics/refs/heads/main/json-schema/item.json",
"title": "Item",
"description": "An inventory item in Microsoft Dynamics 365, representing a product or service that can be bought or sold.",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier of the item.",
"readOnly": true
},
"number": {
"type": "string",
"description": "The item number."
},
"displayName": {
"type": "string",
"description": "The display name of the item."
},
"type": {
"type": "string",
"enum": ["Inventory", "Service", "Non-Inventory"],
"description": "The type of item."
},
"itemCategoryCode": {
"type": "string",
"description": "The category code for the item."
},
"blocked": {
"type": "boolean",
"description": "Indicates whether the item is blocked."
},
"gtin": {
"type": "string",
"description": "The Global Trade Item Number (barcode)."
},
"unitPrice": {
"type": "number",
"description": "The unit sales price of the item."
},
"unitCost": {
"type": "number",
"description": "The unit cost of the item."
},
"inventory": {
"type": "number",
"description": "The current inventory quantity.",
"readOnly": true
},
"taxGroupCode": {
"type": "string",
"description": "The tax group code for the item."
},
"baseUnitOfMeasureCode": {
"type": "string",
"description": "The base unit of measure code."
},
"lastModifiedDateTime": {
"type": "string",
"format": "date-time",
"description": "The date and time the record was last modified.",
"readOnly": true
}
},
"required": ["displayName"]
}