Skip to content
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
6 changes: 3 additions & 3 deletions code/API_definitions/device-identifier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
post:
summary: Get a pseudonymous identifier for device being used by a given mobile subscriber
description: Get a pseudonymous identifier for device being used by a given mobile subscriber
operationId: retrievePPID
operationId: retrievePpid
tags:
- Get Device Identifiers
security:
Expand Down Expand Up @@ -465,7 +465,7 @@
- ppid
allOf:
- $ref: "#/components/schemas/CommonResponseBody"
- $ref: "#/components/schemas/DevicePPID"
- $ref: "#/components/schemas/DevicePpid"
examples:
Successful PPID Retrieval:
description: Device PPID has been successfully retrieved when the device subcsription was identified by a 3-legged access token or single device subscription identifier
Expand Down Expand Up @@ -680,18 +680,18 @@
pattern: ^[0-9]{8}$
description: IMEI TAC of the device
example: "49015420"
model:

Check notice on line 683 in code/API_definitions/device-identifier.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

String has no format/pattern/enum

[S-313] Schema of type string should specify a format, pattern, enum, or const. | Suggestion: Acceptable if free-form field or implementation-dependent — no fix needed.
type: string
maxLength: 32
description: Model of the device
example: "3110"
manufacturer:

Check notice on line 688 in code/API_definitions/device-identifier.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

String has no format/pattern/enum

[S-313] Schema of type string should specify a format, pattern, enum, or const. | Suggestion: Acceptable if free-form field or implementation-dependent — no fix needed.
type: string
maxLength: 32
description: Manufacturer of the device
example: "Nokia"

DevicePPID:
DevicePpid:
description: |
The individual physical mobile device identifier, expressed as a PPID (Pairwise Pseudonymous Identifier)
type: object
Expand Down