Schema Management
POST /api/v1/schemas x-client-secret: [Client Secret] Content-Type: application/jsonGET /api/v1/schemasGET /api/v1/schemas/{id}DELETE /api/v1/schemas/{id} x-client-secret: [Client Secret]
{
"name": "ProofOfPurchase",
"type": "ProofOfPurchase",
"credentialSubject": {
"type": "object",
"properties": {
"ticket": {"type": "string", "title": "Ticket"},
"seat": {"type": "string", "title": "Seat"},
"description": {"type": "string", "title": "Description"}
},
"required": ["ticket", "seat", "description"]
}
}Last updated