{
  "openapi": "3.0.1",
  "info": {
    "title": "Attribute Dictionary",
    "description": "Provide access to the attribute dictionary in a store.",
    "version": "9.1.20.0",
    "x-introduced": "9.1.0.0"
  },
  "servers": [
    {
      "url": "https://{hostname}:{port}/rest/admin/v2",
      "variables": {
        "port": {
          "default": "443",
          "enum": [
            "443",
            "8000"
          ]
        },
        "hostname": {
          "default": "localhost",
          "enum": [
            "localhost",
            "test.hcl.com"
          ]
        }
      }
    }
  ],
  "tags": [
    {
      "name": "Attribute Dictionary",
      "description": "Provide RESTful services to retrieve attribute dictionary resources."
    }
  ],
  "paths": {
    "/attribute-dictionaries": {
      "get": {
        "tags": [
          "Attribute Dictionaries"
        ],
        "description": "Get the attribute dictionary in a store.",
        "operationId": "getAttributeDictionary",
        "parameters": [
          {
            "name": "storeId",
            "in": "query",
            "description": "The unique numeric ID for identifying the store.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32",
              "x-context-data": "storeId"
            },
            "x-context-data": "storeId"
          },
          {
            "name": "dataLanguageIds",
            "in": "query",
            "description": "The data language IDs.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "The operation is successful.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AttributeDictionary"
                }
              }
            },
            "x-entity-path": "dataArea/attributeDictionary[1]"
          }
        },
        "x-expression-template": "{_wcf.ap='{accessProfile}';_wcf.dataLanguageIds='{dataLanguageIds}'}/AttributeDictionary",
        "x-facade-client-class": "com.ibm.commerce.catalog.facade.client.CatalogFacadeClient",
        "x-facade-client-method": "getAttributeDictionary",
        "x-parameters": {
          "accessProfile": "IBM_Admin_Summary"
        },
        "x-request-bod-class": "com.ibm.commerce.catalog.facade.datatypes.GetAttributeDictionaryType"
      }
    }
  },
  "components": {
    "schemas": {
      "AttributeDictionary": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The unique numeric ID for identifying the attribute dictionary.",
            "x-entity-path": "attributeDictionaryIdentifier/uniqueID"
          },
          "storeId": {
            "type": "integer",
            "description": "The unique numeric ID for identifying the store.",
            "format": "int32",
            "x-entity-path": "attributeDictionaryIdentifier/externalIdentifier/storeIdentifier/uniqueID"
          }
        },
        "description": "An attribute dictonary.",
        "x-entity-class": "com.ibm.commerce.catalog.facade.datatypes.AttributeDictionaryType"
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ],
  "x-components": {}
}
