From ea4c7eda858ff37750dbd2eb0144aa254b2e3967 Mon Sep 17 00:00:00 2001 From: Sam Lown Date: Wed, 25 Sep 2024 11:06:54 +0000 Subject: [PATCH] Release v0.200.0-rc4 --- data/regimes/es.json | 8 ++++---- data/schemas/org/identity.json | 5 +++++ version.go | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/data/regimes/es.json b/data/regimes/es.json index cb414e45..64487683 100644 --- a/data/regimes/es.json +++ b/data/regimes/es.json @@ -123,28 +123,28 @@ ], "identity_keys": [ { - "key": "es-passport", + "key": "passport", "name": { "en": "Passport", "es": "Pasaporte" } }, { - "key": "es-foreign-id", + "key": "foreign", "name": { "en": "National ID Card or similar from a foreign country", "es": "Documento oficial de identificaciĆ³n expedido por el paĆ­s o territorio de residencia" } }, { - "key": "es-resident", + "key": "resident", "name": { "en": "Residential permit", "es": "Certificado de residencia" } }, { - "key": "es-other", + "key": "other", "name": { "en": "An other type of source not listed", "es": "Otro documento probatorio" diff --git a/data/schemas/org/identity.json b/data/schemas/org/identity.json index e04a96ce..31ddde7f 100644 --- a/data/schemas/org/identity.json +++ b/data/schemas/org/identity.json @@ -16,6 +16,11 @@ "title": "Label", "description": "Optional label useful for non-standard identities to give a bit more context." }, + "country": { + "$ref": "https://gobl.org/draft-0/l10n/iso-country-code", + "title": "Country", + "description": "Country from which the identity was issued." + }, "key": { "$ref": "https://gobl.org/draft-0/cbc/key", "title": "Key", diff --git a/version.go b/version.go index 4ac97f62..7d2a03b6 100644 --- a/version.go +++ b/version.go @@ -8,7 +8,7 @@ import ( type Version string // VERSION is the current version of the GOBL library. -const VERSION Version = "v0.200.0-rc3" +const VERSION Version = "v0.200.0-rc4" // Semver parses and returns semver func (v Version) Semver() *semver.Version {