xref: /openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/CertificateCollection.json (revision d125652e8a30dfeaad88bbfa5b1e04a80610469c)
1720c9898SEd Tanous{
2720c9898SEd Tanous    "$id": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json",
3720c9898SEd Tanous    "$ref": "#/definitions/CertificateCollection",
4720c9898SEd Tanous    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5*d125652eSGunnar Mills    "copyright": "Copyright 2014-2025 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6720c9898SEd Tanous    "definitions": {
7720c9898SEd Tanous        "CertificateCollection": {
8720c9898SEd Tanous            "anyOf": [
9720c9898SEd Tanous                {
10720c9898SEd Tanous                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef"
11720c9898SEd Tanous                },
12720c9898SEd Tanous                {
13720c9898SEd Tanous                    "additionalProperties": false,
14f2a8e57eSGunnar Mills                    "description": "The collection of `Certificate` resource instances.",
15f2a8e57eSGunnar Mills                    "longDescription": "This resource shall represent a resource collection of `Certificate` instances for a Redfish implementation.",
16720c9898SEd Tanous                    "patternProperties": {
17720c9898SEd Tanous                        "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
18720c9898SEd Tanous                            "description": "This property shall specify a valid odata or Redfish property.",
19720c9898SEd Tanous                            "type": [
20720c9898SEd Tanous                                "array",
21720c9898SEd Tanous                                "boolean",
22720c9898SEd Tanous                                "integer",
23720c9898SEd Tanous                                "number",
24720c9898SEd Tanous                                "null",
25720c9898SEd Tanous                                "object",
26720c9898SEd Tanous                                "string"
27720c9898SEd Tanous                            ]
28720c9898SEd Tanous                        }
29720c9898SEd Tanous                    },
30720c9898SEd Tanous                    "properties": {
31720c9898SEd Tanous                        "@odata.context": {
32720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
33720c9898SEd Tanous                        },
34720c9898SEd Tanous                        "@odata.etag": {
35720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
36720c9898SEd Tanous                        },
37720c9898SEd Tanous                        "@odata.id": {
38720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
39720c9898SEd Tanous                        },
40720c9898SEd Tanous                        "@odata.type": {
41720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
42720c9898SEd Tanous                        },
43720c9898SEd Tanous                        "Description": {
44720c9898SEd Tanous                            "anyOf": [
45720c9898SEd Tanous                                {
46720c9898SEd Tanous                                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
47720c9898SEd Tanous                                },
48720c9898SEd Tanous                                {
49720c9898SEd Tanous                                    "type": "null"
50720c9898SEd Tanous                                }
51720c9898SEd Tanous                            ],
52720c9898SEd Tanous                            "readonly": true
53720c9898SEd Tanous                        },
54720c9898SEd Tanous                        "Members": {
55720c9898SEd Tanous                            "description": "The members of this collection.",
56720c9898SEd Tanous                            "items": {
57720c9898SEd Tanous                                "$ref": "http://redfish.dmtf.org/schemas/v1/Certificate.json#/definitions/Certificate"
58720c9898SEd Tanous                            },
59720c9898SEd Tanous                            "longDescription": "This property shall contain an array of links to the members of this collection.",
60720c9898SEd Tanous                            "readonly": true,
61720c9898SEd Tanous                            "type": "array"
62720c9898SEd Tanous                        },
63720c9898SEd Tanous                        "Members@odata.count": {
64720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
65720c9898SEd Tanous                        },
66720c9898SEd Tanous                        "Members@odata.nextLink": {
67720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/nextLink"
68720c9898SEd Tanous                        },
69720c9898SEd Tanous                        "Name": {
70720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
71720c9898SEd Tanous                            "readonly": true
72720c9898SEd Tanous                        },
73720c9898SEd Tanous                        "Oem": {
74720c9898SEd Tanous                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
75720c9898SEd Tanous                            "description": "The OEM extension property.",
76720c9898SEd Tanous                            "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
77720c9898SEd Tanous                        }
78720c9898SEd Tanous                    },
79720c9898SEd Tanous                    "required": [
80720c9898SEd Tanous                        "Members",
81720c9898SEd Tanous                        "Members@odata.count",
82720c9898SEd Tanous                        "@odata.id",
83720c9898SEd Tanous                        "@odata.type",
84720c9898SEd Tanous                        "Name"
85720c9898SEd Tanous                    ],
86720c9898SEd Tanous                    "type": "object"
87720c9898SEd Tanous                }
88720c9898SEd Tanous            ],
89720c9898SEd Tanous            "deletable": false,
90720c9898SEd Tanous            "insertable": true,
91720c9898SEd Tanous            "updatable": false,
92720c9898SEd Tanous            "uris": [
93720c9898SEd Tanous                "/redfish/v1/AccountService/Accounts/{ManagerAccountId}/Certificates",
94720c9898SEd Tanous                "/redfish/v1/AccountService/ActiveDirectory/Certificates",
95720c9898SEd Tanous                "/redfish/v1/AccountService/LDAP/Certificates",
96720c9898SEd Tanous                "/redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates",
97720c9898SEd Tanous                "/redfish/v1/AccountService/MultiFactorAuth/ClientCertificate/Certificates",
98720c9898SEd Tanous                "/redfish/v1/AccountService/MultiFactorAuth/SecurID/Certificates",
99720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Certificates",
100720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/RemoteAccountService/ActiveDirectory/Certificates",
101720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/RemoteAccountService/LDAP/Certificates",
102720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates",
103720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/ClientCertificate/Certificates",
104720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/SecurID/Certificates",
105720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/NetworkProtocol/HTTPS/Certificates",
106720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Boot/Certificates",
107720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates",
108720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates",
109720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates",
110720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates",
111720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates",
112720c9898SEd Tanous                "/redfish/v1/EventService/Subscriptions/{EventDestinationId}/Certificates",
113720c9898SEd Tanous                "/redfish/v1/EventService/Subscriptions/{EventDestinationId}/ClientCertificates",
114720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Certificates",
115720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates",
116720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates",
117720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates",
118720c9898SEd Tanous                "/redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Certificates",
119720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates",
120720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates",
121720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates",
122720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates",
123720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates",
124720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates",
125720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates",
126720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates",
127720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates",
128720c9898SEd Tanous                "/redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates",
129720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates",
130720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates",
131720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates",
132720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates",
133720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates",
134720c9898SEd Tanous                "/redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates",
135720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates",
136720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates",
137720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates",
138720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates",
139720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates",
140720c9898SEd Tanous                "/redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Certificates",
141720c9898SEd Tanous                "/redfish/v1/Chassis/{ChassisId}/Certificates",
142720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates",
143720c9898SEd Tanous                "/redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Certificates",
144720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates",
145720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates",
146720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates",
147720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates",
148720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates",
149720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates",
150720c9898SEd Tanous                "/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Certificates",
151720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates",
152720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates",
153720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates",
154720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates",
155720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates",
156720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates",
157720c9898SEd Tanous                "/redfish/v1/UpdateService/RemoteServerCertificates",
158720c9898SEd Tanous                "/redfish/v1/UpdateService/ClientCertificates",
159720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/Certificates",
160720c9898SEd Tanous                "/redfish/v1/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates",
161720c9898SEd Tanous                "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates",
162720c9898SEd Tanous                "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates",
163720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/TrustedCertificates",
164720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/RevokedCertificates",
165720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/TrustedCertificates",
166720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/RevokedCertificates",
167720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/TrustedCertificates",
168720c9898SEd Tanous                "/redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/RevokedCertificates",
169720c9898SEd Tanous                "/redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}/Certificates",
170720c9898SEd Tanous                "/redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/Certificates",
171f2a8e57eSGunnar Mills                "/redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/ClientCertificates",
172f2a8e57eSGunnar Mills                "/redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}/Certificates"
173720c9898SEd Tanous            ]
174720c9898SEd Tanous        }
175720c9898SEd Tanous    },
176f2a8e57eSGunnar Mills    "language": "en",
177720c9898SEd Tanous    "owningEntity": "DMTF",
178720c9898SEd Tanous    "title": "#CertificateCollection.CertificateCollection"
179720c9898SEd Tanous}