Payload to create or set multiple attribute values on a credential
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CredentialAttributeValuePostList", "title": "CredentialAttributeValuePostList", "type": "object", "description": "Payload to create or set multiple attribute values on a credential", "properties": { "attributeValues": { "type": "array", "description": "List of attribute values to create or set", "items": { "$ref": "#/components/schemas/CredentialAttributeValuePost" } } } }