Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:KICS Violation #269

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions backend/src/main/resources/static/aas-registry-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -978,8 +978,8 @@ components:
type: string
endpoints:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/Endpoint'
globalAssetId:
Expand Down Expand Up @@ -1061,8 +1061,8 @@ components:
type: string
refersTo:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/Reference'
HasSemantics:
Expand All @@ -1072,8 +1072,8 @@ components:
$ref: '#/components/schemas/Reference'
supplementalSemanticIds:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/Reference'
Reference:
Expand All @@ -1087,8 +1087,8 @@ components:
$ref: '#/components/schemas/ReferenceTypes'
keys:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/Key'
ReferenceTypes:
Expand Down Expand Up @@ -1197,8 +1197,8 @@ components:
properties:
embeddedDataSpecifications:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/EmbeddedDataSpecification'
EmbeddedDataSpecification:
Expand All @@ -1225,8 +1225,8 @@ components:
$ref: '#/components/schemas/LangStringPreferredNameTypeIec61360'
shortName:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/LangStringShortNameTypeIec61360'
unit:
Expand All @@ -1247,8 +1247,8 @@ components:
$ref: '#/components/schemas/DataTypeIec61360'
definition:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/LangStringDefinitionTypeIec61360'
valueFormat:
Expand Down Expand Up @@ -1341,8 +1341,8 @@ components:
properties:
valueReferencePairs:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/ValueReferencePair'
ValueReferencePair:
Expand Down Expand Up @@ -1403,8 +1403,8 @@ components:
type: string
securityAttributes:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/ProtocolInformation_securityAttributes'
SpecificAssetId:
Expand Down Expand Up @@ -1434,8 +1434,8 @@ components:
$ref: '#/components/schemas/AdministrativeInformation'
endpoints:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/Endpoint'
idShort:
Expand All @@ -1450,8 +1450,8 @@ components:
$ref: '#/components/schemas/Reference'
supplementalSemanticId:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
$ref: '#/components/schemas/Reference'
example: {"endpoints": [{"interface": "interfaceNameExample","protocolInformation": {"href": "endpointAddressExample","endpointProtocol": "endpointProtocolExample","endpointProtocolVersion": [ "e"],"subprotocol": "subprotocolExample","subprotocolBody": "subprotocolBodyExample","subprotocolBodyEncoding": "subprotocolBodyExample","securityAttributes": [{"type": "NONE","key": "Security Attribute key","value": "Security Attribute value" }]}}],"idShort": "idShortExample","id": "341f63de-728a-4b6d-9c72-c0d9ba4f8c7d","semanticId": {"type": "ExternalReference","keys": [{"type": "Submodel","value": "semanticIdExample"}]},"description": [{"language": "de","text": "hello text"},{"language": "en","text": "hello s"}]}
Expand Down Expand Up @@ -1505,8 +1505,8 @@ components:
properties:
profiles:
minItems: 1
maxItems: 10000
type: array
maxItems: 10000
items:
type: string
enum:
Expand Down
Loading