|
| 1 | +openapi: 3.0.3 |
| 2 | +info: |
| 3 | + title: DotAAS Part 2 | HTTP/REST | Asset Administration Shell Registry Service Specification |
| 4 | + description: >- |
| 5 | + The Minimal Read Profile of the Asset Administration Shell Registry Service Specification as part of the [Specification of the Asset Administration Shell: Part 2](https://industrialdigitaltwin.org/en/content-hub/aasspecifications). |
| 6 | + |
| 7 | + Publisher: Industrial Digital Twin Association (IDTA) 2025 |
| 8 | + contact: |
| 9 | + name: Industrial Digital Twin Association (IDTA) |
| 10 | + email: info@idtwin.org |
| 11 | + license: |
| 12 | + name: CC BY 4.0 |
| 13 | + url: https://creativecommons.org/licenses/by/4.0/ |
| 14 | + version: V3.1.0_SSP-005 |
| 15 | + x-profile-identifier: https://admin-shell.io/aas/API/3/1/AssetAdministrationShellRegistryServiceSpecification/SSP-005 |
| 16 | +servers: |
| 17 | +- url: 'https://admin-shell.io/api/v3/' |
| 18 | +- url: 'https://example.com/' |
| 19 | +paths: |
| 20 | + /shell-descriptors: |
| 21 | + get: |
| 22 | + tags: |
| 23 | + - Asset Administration Shell Registry API |
| 24 | + summary: Returns all Asset Administration Shell Descriptors |
| 25 | + operationId: GetAllAssetAdministrationShellDescriptors |
| 26 | + x-semanticIds: |
| 27 | + - https://admin-shell.io/aas/API/GetAllAssetAdministrationShellDescriptors/3/1 |
| 28 | + - https://admin-shell.io/aas/API/GetAllAssetAdministrationShellDescriptorsByAssetType/3/0 |
| 29 | + parameters: |
| 30 | + - $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/parameters/Limit' |
| 31 | + - $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/parameters/Cursor' |
| 32 | + - $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/parameters/AssetKind' |
| 33 | + - $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/parameters/AssetType' |
| 34 | + responses: |
| 35 | + '200': |
| 36 | + description: Requested Asset Administration Shell Descriptors |
| 37 | + content: |
| 38 | + application/json: |
| 39 | + schema: |
| 40 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/schemas/GetAssetAdministrationShellDescriptorsResult' |
| 41 | + '400': |
| 42 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/bad-request' |
| 43 | + '403': |
| 44 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/forbidden' |
| 45 | + '500': |
| 46 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/internal-server-error' |
| 47 | + default: |
| 48 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/default' |
| 49 | + /shell-descriptors/{aasIdentifier}: |
| 50 | + get: |
| 51 | + tags: |
| 52 | + - Asset Administration Shell Registry API |
| 53 | + summary: Returns a specific Asset Administration Shell Descriptor |
| 54 | + operationId: GetAssetAdministrationShellDescriptorById |
| 55 | + x-semanticIds: |
| 56 | + - https://admin-shell.io/aas/API/GetAssetAdministrationShellDescriptorById/3/1 |
| 57 | + parameters: |
| 58 | + - name: aasIdentifier |
| 59 | + in: path |
| 60 | + description: The Asset Administration Shell’s unique id (UTF8-BASE64-URL-encoded) |
| 61 | + required: true |
| 62 | + style: simple |
| 63 | + explode: false |
| 64 | + schema: |
| 65 | + type: string |
| 66 | + responses: |
| 67 | + '200': |
| 68 | + description: Requested Asset Administration Shell Descriptor |
| 69 | + content: |
| 70 | + application/json: |
| 71 | + schema: |
| 72 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/schemas/AssetAdministrationShellDescriptor' |
| 73 | + '400': |
| 74 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/bad-request' |
| 75 | + '403': |
| 76 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/forbidden' |
| 77 | + '404': |
| 78 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/not-found' |
| 79 | + '500': |
| 80 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/internal-server-error' |
| 81 | + default: |
| 82 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/default' |
| 83 | + |
| 84 | + /description: |
| 85 | + get: |
| 86 | + tags: |
| 87 | + - Description API |
| 88 | + summary: Returns the self-describing information of a network resource (ServiceDescription) |
| 89 | + operationId: GetSelfDescription |
| 90 | + x-semanticIds: |
| 91 | + - https://admin-shell.io/aas/API/GetSelfDescription/3/1 |
| 92 | + responses: |
| 93 | + '200': |
| 94 | + description: Requested Description |
| 95 | + content: |
| 96 | + application/json: |
| 97 | + schema: |
| 98 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/schemas/ServiceDescription' |
| 99 | + '403': |
| 100 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/forbidden' |
| 101 | + default: |
| 102 | + $ref: 'https://api.swaggerhub.com/domains/Plattform_i40/Part2-API-Schemas/V3.1.0#/components/responses/default' |
0 commit comments