Amazon Private CA · Schema

EdiPartyName

Describes an Electronic Data Interchange (EDI) entity as described in as defined in Subject Alternative Name in RFC 5280.

Certificate AuthorityCertificatesPKISecurityX.509TLSIoT

Properties

Name Type Description
PartyName object
NameAssigner object
View JSON Schema on GitHub

JSON Schema

amazon-private-ca-edi-party-name-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-private-ca/refs/heads/main/json-schema/amazon-private-ca-edi-party-name-schema.json",
  "title": "EdiPartyName",
  "description": "Describes an Electronic Data Interchange (EDI) entity as described in as defined in <a href=\"https://datatracker.ietf.org/doc/html/rfc5280\">Subject Alternative Name</a> in RFC 5280.",
  "type": "object",
  "properties": {
    "PartyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String256"
        },
        {
          "description": "Specifies the party name."
        }
      ]
    },
    "NameAssigner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String256"
        },
        {
          "description": "Specifies the name assigner."
        }
      ]
    }
  },
  "required": [
    "PartyName"
  ]
}