v1

latestOpenAPI 3.0.32026-07-24198357534.7 KB
Data Model

Create a new AttributeSet in the datamodel

Creates a AttributeSet resource.

post/attribute-sets

Request body

idstring required

This is the unique identifier of the resource

documentTypeCodestring required

This is the unique identifier of the document type that the resource should be apply to

Example request

{
  "attributes": {
    "id": "attribute_example",
    "position": 1
  },
  "id": "identifier_example",
  "documentTypeCode": "document_type_example",
  "description": {
    "fr-FR": "fr-FR translation",
    "en-US": "en-US translation",
    "<*>": "..."
  },
  "name": {
    "fr-FR": "fr-FR translation",
    "en-US": "en-US translation",
    "<*>": "..."
  }
}

Response

AttributeSet resource created

legacyIdinteger
idstring required

This is the unique identifier of the resource

documentTypeCodestring required

This is the unique identifier of the document type that the resource should be apply to

dateModifiedstring date-time nullable

This is an ISO datetime

dateCreatedstring date-time nullable

This is an ISO datetime

Example response

{
  "attributes": {
    "id": "attribute_example",
    "position": 1
  },
  "id": "identifier_example",
  "documentTypeCode": "document_type_example",
  "description": {
    "fr-FR": "fr-FR translation",
    "en-US": "en-US translation",
    "<*>": "..."
  },
  "name": {
    "fr-FR": "fr-FR translation",
    "en-US": "en-US translation",
    "<*>": "..."
  }
}