{ "sections": [ "title", "description", "file_information", "directory_location", "fields", "wsdl_segment", "declarative_metadata_sample_definition" ], "title": "PublicKeyCertificate - Metadata API", "description": "Represents the public key certificate. On this entity we store a public certificate or a JSON web key, which is used to validate the customer-provided JWT.", "file_information": ".PublicKeyCertificate", "directory_location": "PublicKeyCertificate", "fields_columns": [ "type", "description", "required" ], "fields": { "description": { "type": "string", "description": "A description of the public key certificate." }, "isActive": { "type": "boolean", "description": "Indicates whether the public key certificate is active (true) or inactive (false). The default value is false." }, "jsonWebKey": { "type": "string", "description": "Represents a public cryptographic key that can be used to verify the validity of a token." }, "masterLabel": { "type": "string", "required": true, "description": "The label for the public key certificate." } }, "wsdl_segment": "```xml\n\n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n\n```", "declarative_metadata_sample_definition": [ { "description": "The following is an example of a PublicKeyCertificate component.", "code": "\n\n pck1\n true\n This is my description for a test PublicKeyCertificate\n \n{\n \"kid\":\"123456\",\n \"alg\":\"RS256\",\n \"use\":\"sig\",\n \"kty\":\"RSA\",\n \"x5c\":[\"\"],\n \"y\":\"y\",\n \"n\":\"\",\n \"e\":\"\",\n \"crv\":\"crv\",\n \"d\":\"d\",\n \"k\":\"k\"\n}\n \n" }, { "description": "The following is an example package.xml that references the previous definition.", "code": "\n\n\n\n \n *\n PublicKeyCertificate\n \n 62.0\n" } ] }