Netlify · Schema

paymentMethod

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
method_name string
type string
state string
data object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

netlify-paymentmethod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/paymentMethod",
  "title": "paymentMethod",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "method_name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {
        "card_type": {
          "type": "string"
        },
        "last4": {
          "type": "string"
        },
        "email": {
          "type": "string"
        }
      }
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    },
    "updated_at": {
      "type": "string",
      "format": "dateTime"
    }
  }
}