Commit 638bae94 by jaymehta

gift card entity

1 parent 9dc0b281
...@@ -4,15 +4,39 @@ ...@@ -4,15 +4,39 @@
"info": { "info": {
"singularName": "gift-card", "singularName": "gift-card",
"pluralName": "gift-cards", "pluralName": "gift-cards",
"displayName": "Gift-cards" "displayName": "Gift-cards",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": true "draftAndPublish": false
}, },
"pluginOptions": {}, "pluginOptions": {},
"attributes": { "attributes": {
"name": { "senderName": {
"type": "string" "type": "string"
},
"senerEmail": {
"type": "string"
},
"receiverEmail": {
"type": "string"
},
"receiverName": {
"type": "string"
},
"amount": {
"type": "float"
},
"note": {
"type": "text"
},
"status": {
"type": "enumeration",
"enum": [
"new",
"fulfilled",
"rejected"
]
} }
} }
} }
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!